forked from Covisint/cui-gitbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
81 lines (75 loc) · 3.11 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.thirdwavellc</groupId>
<artifactId>thirdwave-parent</artifactId>
<version>1.1.3</version>
</parent>
<groupId>com.covisint.cui</groupId>
<artifactId>cui-gitbook</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptor>assembly.xml</descriptor>
<finalName>cui-gitbook-${project.version}</finalName>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- lets let people know we are deploying this -->
<plugin>
<groupId>br.com.kibutx</groupId>
<artifactId>slack-maven-plugin</artifactId>
<version>1.1.2</version>
<executions>
<execution>
<id>slack</id>
<phase>deploy</phase>
<goals>
<goal>slackmessage</goal>
</goals>
<configuration>
<apiHash>T04NG8SKZ/B0CSFDSAU/dEomAyvMHfg0CBuVMyKFKCyT</apiHash>
<username>Maven8r</username>
<channel>#cui-gitbook</channel>
<message>Whoo Hoo! A new version of the Gitbook has been built.</message>
<attachments>
<attachment>
<title>${project.name}</title>
<title_link>http://nexus.thirdwavellc.com/service/local/artifact/maven/redirect?r=snapshots&g=${project.groupId}&a=${project.artifactId}&v=${project.version}&p=tar.gz&c=static</title_link>
<author_name>${user.name} on ${os.name}</author_name>
<color>#36a64f</color>
<fallback>Artifact ${project.artifactId} has been posted to Nexus.</fallback>
<pretext>Get your Gitbook here!</pretext>
<text>${project.description}</text>
</attachment>
</attachments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<scm>
<url>https://github.com/thirdwavellc/cui-ng</url>
<connection>scm:git:[email protected]:thirdwavellc/cui-gitbook.git</connection>
<tag>HEAD</tag>
</scm>
<organization>
<name>Covisint</name>
</organization>
<name>CUI Gitbook</name>
<description>The highest level documentation for the CUI SDK.</description>
</project>