Release version 2.1.2 dockers and roll version
[sdnc/oam.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>2.1.1</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.sdnc.oam</groupId>
13     <artifactId>sdnc-oam</artifactId>
14     <version>2.1.3-SNAPSHOT</version>
15     <packaging>pom</packaging>
16
17     <name>sdnc-oam</name>
18     <description>The SDN-C OAM component contains the components needed to operate, administer and maintain the SDN-C platform.</description>
19     <url>https://wiki.onap.org</url>
20     <organization>
21         <name>AT&amp;T</name>
22     </organization>
23
24     <modules>
25         <module>platform-logic</module>
26         <module>data-migrator</module>
27     </modules>
28
29     <scm>
30         <connection>scm:git:ssh://git@${onap.git.host}/sdnc-oam.git</connection>
31         <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-oam.git</developerConnection>
32         <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-oam/browse</url>
33         <tag>HEAD</tag>
34     </scm>
35     <issueManagement>
36         <system>JIRA</system>
37         <url>https://jira.onap.org/</url>
38     </issueManagement>
39     <ciManagement>
40         <system>Jenkins</system>
41         <url>https://jenkins.onap.org/</url>
42     </ciManagement>
43     <distributionManagement>
44         <site>
45             <id>sdnc-javadoc</id>
46             <url>dav:https://${onap.nexus.host}:${onap.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url>
47         </site>
48     </distributionManagement>
49
50     <dependencies>
51         <dependency>
52             <groupId>org.slf4j</groupId>
53             <artifactId>slf4j-api</artifactId>
54             <version>1.7.25</version>
55         </dependency>
56     </dependencies>
57
58     <build>
59         <plugins>
60             <plugin>
61                 <groupId>org.apache.maven.plugins</groupId>
62                 <artifactId>maven-surefire-plugin</artifactId>
63                 <version>2.17</version>
64                 <configuration>
65                     <skipTests>false</skipTests>
66                 </configuration>
67             </plugin>
68         </plugins>
69     </build>
70
71     <profiles>
72         <profile>
73             <id>blackduck</id>
74             <activation>
75                 <property>
76                     <name>blackduck-scan</name>
77                 </property>
78             </activation>
79             <build>
80                 <plugins>
81                     <plugin>
82                         <groupId>com.blackducksoftware.integration</groupId>
83                         <artifactId>hub-maven-plugin</artifactId>
84                         <version>1.4.0</version>
85                         <inherited>false</inherited>
86                         <configuration>
87                             <hubProjectName>${project.name}</hubProjectName>
88                             <outputDirectory>${project.basedir}</outputDirectory>
89                         </configuration>
90                         <executions>
91                             <execution>
92                                 <id>create-bdio-file</id>
93                                 <phase>package</phase>
94                                 <goals>
95                                     <goal>createHubOutput</goal>
96                                 </goals>
97                             </execution>
98                         </executions>
99                     </plugin>
100                 </plugins>
101
102
103             </build>
104
105         </profile>
106         <profile>
107             <id>docker</id>
108             <modules>
109                 <module>installation</module>
110             </modules>
111         </profile>
112
113     </profiles>
114 </project>