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