Release version 1.1.0 of sli/plugins
[ccsdk/sli/plugins.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4
5     <parent>
6         <groupId>org.onap.ccsdk.parent</groupId>
7         <artifactId>odlparent-lite</artifactId>
8         <version>1.5.2-SNAPSHOT</version>
9     </parent>
10
11     <groupId>org.onap.ccsdk.sli.plugins</groupId>
12     <artifactId>ccsdk-sli-plugins</artifactId>
13     <version>0.7.1-SNAPSHOT</version>
14     <packaging>pom</packaging>
15
16     <name>ccsdk-sli-plugins</name>
17     <description>CCSDK Java Plugins</description>
18     <url>https://wiki.onap.org</url>
19     <organization>
20         <name>ONAP</name>
21     </organization>
22
23     <modules>
24         <module>properties-node</module>
25         <module>restapi-call-node</module>
26         <module>sshapi-call-node</module>
27         <module>restconf-client</module>
28         <module>template-node</module>
29         <module>grToolkit</module>
30         <module>features</module>
31         <module>artifacts</module>
32     </modules>
33
34     <scm>
35         <connection>scm:git:ssh://git@${onap.git.host}/ccsdk/sli/plugins.git</connection>
36         <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/ccsdk/sli/plugins.git</developerConnection>
37         <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/ccsdk/sli/plugins/browse</url>
38         <tag>HEAD</tag>
39     </scm>
40     <issueManagement>
41         <system>JIRA</system>
42         <url>https://jira.onap.org/</url>
43     </issueManagement>
44     <ciManagement>
45         <system>Jenkins</system>
46         <url>https://jenkins.onap.org</url>
47     </ciManagement>
48     <distributionManagement>
49         <site>
50             <id>sdnc-javadoc</id>
51             <url>dav:https://${onap.nexus.host}/content/sites/site/org/onap/sdnc/plugins/${project.artifactId}/${project.version}</url>
52         </site>
53     </distributionManagement>
54
55     <build>
56         <plugins>
57             <plugin>
58                 <groupId>org.apache.maven.plugins</groupId>
59                 <artifactId>maven-surefire-plugin</artifactId>
60                 <version>2.17</version>
61                 <configuration>
62                     <skipTests>false</skipTests>
63                 </configuration>
64             </plugin>
65         </plugins>
66     </build>
67
68     <profiles>
69         <profile>
70             <id>blackduck</id>
71             <activation>
72                 <property>
73                     <name>blackduck-scan</name>
74                 </property>
75             </activation>
76             <build>
77                 <plugins>
78                     <plugin>
79                         <groupId>com.blackducksoftware.integration</groupId>
80                         <artifactId>hub-maven-plugin</artifactId>
81                         <version>1.4.0</version>
82                         <inherited>false</inherited>
83                         <configuration>
84                             <hubProjectName>${project.name}</hubProjectName>
85                             <outputDirectory>${project.basedir}</outputDirectory>
86                         </configuration>
87                         <executions>
88                             <execution>
89                                 <id>create-bdio-file</id>
90                                 <phase>package</phase>
91                                 <goals>
92                                     <goal>createHubOutput</goal>
93                                 </goals>
94                             </execution>
95                         </executions>
96                     </plugin>
97                 </plugins>
98             </build>
99         </profile>
100         <profile>
101             <id>dependency-list</id>
102             <build>
103                 <plugins>
104                     <plugin>
105                         <groupId>com.github.ferstl</groupId>
106                         <artifactId>depgraph-maven-plugin</artifactId>
107                         <executions>
108                             <execution>
109                                 <phase>validate</phase>
110                                 <inherited>false</inherited>
111                                 <goals>
112                                     <goal>aggregate</goal>
113                                 </goals>
114                             </execution>
115                         </executions>
116                     </plugin>
117                     <plugin>
118                         <groupId>org.codehaus.mojo</groupId>
119                         <artifactId>build-helper-maven-plugin</artifactId>
120                         <executions>
121                             <execution>
122                                 <id>attach-artifacts</id>
123                                 <phase>package</phase>
124                                 <inherited>false</inherited>
125                                 <goals>
126                                     <goal>attach-artifact</goal>
127                                 </goals>
128                                 <configuration>
129                                     <artifacts>
130                                         <artifact>
131                                             <file>${dependency-list.file}</file>
132                                             <type>txt</type>
133                                             <classifier>dependencies</classifier>
134                                         </artifact>
135                                     </artifacts>
136                                 </configuration>
137                             </execution>
138                         </executions>
139                     </plugin>
140                 </plugins>
141             </build>
142         </profile>
143     </profiles>
144 </project>