Bump minor version
[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/maven-v4_0_0.xsd">
3
4     <parent>
5         <groupId>org.onap.ccsdk.parent</groupId>
6         <artifactId>odlparent-carbon-sr1</artifactId>
7         <version>0.1.0</version>
8     </parent>
9
10     <modelVersion>4.0.0</modelVersion>
11     <packaging>pom</packaging>
12     <groupId>org.onap.ccsdk.sli.plugins</groupId>
13     <artifactId>ccsdk-sli-plugins</artifactId>
14
15     <name>ccsdk-sli-plugins</name>
16     <url>https://wiki.onap.org</url>
17     <description>CCSDK Java Plugins</description>
18
19
20     <issueManagement>
21         <system>JIRA</system>
22         <url>https://jira.onap.org/</url>
23     </issueManagement>
24
25
26     <scm>
27         <connection>scm:git:ssh://git@${onap.git.host}/ccsdk/sli/plugins.git</connection>
28         <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/ccsdk/sli/plugins.git</developerConnection>
29         <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/ccsdk/sli/plugins/browse</url>
30         <tag>HEAD</tag>
31     </scm>
32
33     <ciManagement>
34         <system>Jenkins</system>
35         <url>https://jenkins.onap.org</url>
36     </ciManagement>
37
38
39     <distributionManagement>
40         <site>
41             <id>sdnc-javadoc</id>
42             <url>dav:https://${onap.nexus.host}/content/sites/site/org/onap/sdnc/plugins/${project.artifactId}/${project.version}</url>
43         </site>
44     </distributionManagement>
45
46     <profiles>
47         <profile>
48             <id>blackduck</id>
49             <activation>
50                 <property>
51                     <name>blackduck-scan</name>
52                 </property>
53             </activation>
54             <build>
55                     <plugins>
56                         <plugin>
57                             <groupId>com.blackducksoftware.integration</groupId>
58                             <artifactId>hub-maven-plugin</artifactId>
59                             <version>1.4.0</version>
60                             <inherited>false</inherited>
61                             <configuration>
62                                 <hubProjectName>${project.name}</hubProjectName>
63                                 <outputDirectory>${project.basedir}</outputDirectory>
64                             </configuration>
65                             <executions>
66                                 <execution>
67                                     <id>create-bdio-file</id>
68                                     <phase>package</phase>
69                                     <goals>
70                                         <goal>createHubOutput</goal>
71                                     </goals>
72                                 </execution>
73                             </executions>
74                         </plugin>
75                     </plugins>
76
77
78             </build>
79
80         </profile>
81
82     </profiles>
83     <build>
84         <plugins>
85             <plugin>
86                 <groupId>org.apache.maven.plugins</groupId>
87                 <artifactId>maven-surefire-plugin</artifactId>
88                 <version>2.17</version>
89                 <configuration>
90                     <skipTests>false</skipTests>
91                 </configuration>
92             </plugin>
93             <plugin>
94                 <groupId>org.sonatype.plugins</groupId>
95                 <artifactId>nexus-staging-maven-plugin</artifactId>
96                 <version>1.6.7</version>
97                 <extensions>true</extensions>
98                 <configuration>
99                     <nexusUrl>https://${onap.nexus.host}</nexusUrl>
100                     <stagingProfileId>${onap.nexus.staging.profile-id}</stagingProfileId>
101                     <serverId>${onap.nexus.staging.server-id}</serverId>
102                 </configuration>
103             </plugin>
104         </plugins>
105
106     </build>
107     <modules>
108         <module>properties-node</module>
109         <module>restapi-call-node</module>
110   </modules>
111     <organization>
112         <name>AT&amp;T</name>
113     </organization>
114     <version>0.2.0-SNAPSHOT</version>
115
116
117 </project>