API for RestconfClient
[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.1.0-SNAPSHOT</version>
9     </parent>
10
11     <groupId>org.onap.ccsdk.sli.plugins</groupId>
12     <artifactId>ccsdk-sli-plugins</artifactId>
13     <version>0.3.0-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>features</module>
29     </modules>
30
31     <scm>
32         <connection>scm:git:ssh://git@${onap.git.host}/ccsdk/sli/plugins.git</connection>
33         <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/ccsdk/sli/plugins.git</developerConnection>
34         <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/ccsdk/sli/plugins/browse</url>
35         <tag>HEAD</tag>
36     </scm>
37     <issueManagement>
38         <system>JIRA</system>
39         <url>https://jira.onap.org/</url>
40     </issueManagement>
41     <ciManagement>
42         <system>Jenkins</system>
43         <url>https://jenkins.onap.org</url>
44     </ciManagement>
45     <distributionManagement>
46         <site>
47             <id>sdnc-javadoc</id>
48             <url>dav:https://${onap.nexus.host}/content/sites/site/org/onap/sdnc/plugins/${project.artifactId}/${project.version}</url>
49         </site>
50     </distributionManagement>
51
52     <build>
53         <plugins>
54             <plugin>
55                 <groupId>org.apache.maven.plugins</groupId>
56                 <artifactId>maven-surefire-plugin</artifactId>
57                 <version>2.17</version>
58                 <configuration>
59                     <skipTests>false</skipTests>
60                 </configuration>
61             </plugin>
62             <plugin>
63                 <groupId>org.sonatype.plugins</groupId>
64                 <artifactId>nexus-staging-maven-plugin</artifactId>
65                 <version>1.6.7</version>
66                 <extensions>true</extensions>
67                 <configuration>
68                     <nexusUrl>https://${onap.nexus.host}</nexusUrl>
69                     <stagingProfileId>${onap.nexus.staging.profile-id}</stagingProfileId>
70                     <serverId>${onap.nexus.staging.server-id}</serverId>
71                 </configuration>
72             </plugin>
73         </plugins>
74     </build>
75
76     <profiles>
77         <profile>
78             <id>blackduck</id>
79             <activation>
80                 <property>
81                     <name>blackduck-scan</name>
82                 </property>
83             </activation>
84             <build>
85                 <plugins>
86                     <plugin>
87                         <groupId>com.blackducksoftware.integration</groupId>
88                         <artifactId>hub-maven-plugin</artifactId>
89                         <version>1.4.0</version>
90                         <inherited>false</inherited>
91                         <configuration>
92                             <hubProjectName>${project.name}</hubProjectName>
93                             <outputDirectory>${project.basedir}</outputDirectory>
94                         </configuration>
95                         <executions>
96                             <execution>
97                                 <id>create-bdio-file</id>
98                                 <phase>package</phase>
99                                 <goals>
100                                     <goal>createHubOutput</goal>
101                                 </goals>
102                             </execution>
103                         </executions>
104                     </plugin>
105                 </plugins>
106
107
108             </build>
109
110         </profile>
111
112     </profiles>
113 </project>