[CCSDK-987]Create GR Toolkit
[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.2.1-SNAPSHOT</version>
9     </parent>
10
11     <groupId>org.onap.ccsdk.sli.plugins</groupId>
12     <artifactId>ccsdk-sli-plugins</artifactId>
13     <version>0.4.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             <plugin>
66                 <groupId>org.sonatype.plugins</groupId>
67                 <artifactId>nexus-staging-maven-plugin</artifactId>
68                 <version>1.6.7</version>
69                 <extensions>true</extensions>
70                 <configuration>
71                     <nexusUrl>https://${onap.nexus.host}</nexusUrl>
72                     <stagingProfileId>${onap.nexus.staging.profile-id}</stagingProfileId>
73                     <serverId>${onap.nexus.staging.server-id}</serverId>
74                 </configuration>
75             </plugin>
76         </plugins>
77     </build>
78
79     <profiles>
80         <profile>
81             <id>blackduck</id>
82             <activation>
83                 <property>
84                     <name>blackduck-scan</name>
85                 </property>
86             </activation>
87             <build>
88                 <plugins>
89                     <plugin>
90                         <groupId>com.blackducksoftware.integration</groupId>
91                         <artifactId>hub-maven-plugin</artifactId>
92                         <version>1.4.0</version>
93                         <inherited>false</inherited>
94                         <configuration>
95                             <hubProjectName>${project.name}</hubProjectName>
96                             <outputDirectory>${project.basedir}</outputDirectory>
97                         </configuration>
98                         <executions>
99                             <execution>
100                                 <id>create-bdio-file</id>
101                                 <phase>package</phase>
102                                 <goals>
103                                     <goal>createHubOutput</goal>
104                                 </goals>
105                             </execution>
106                         </executions>
107                     </plugin>
108                 </plugins>
109
110
111             </build>
112
113         </profile>
114
115     </profiles>
116 </project>