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