Moving CCSDK/Features and ORAN Features from CCSDK/distribution
[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.2.0-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.sdnc.oam</groupId>
13     <artifactId>sdnc-oam</artifactId>
14     <version>2.2.0-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     <properties>
25         <sdnc.project.version>${project.version}</sdnc.project.version>
26
27         <!-- All Version definition is placed in org.onap.ccsdk.parent/odlparent-lite -->
28         <ccsdk.oran.a1adapter.version>1.2.0-SNAPSHOT</ccsdk.oran.a1adapter.version>
29         <sdnc.northbound.version>2.2.0-SNAPSHOT</sdnc.northbound.version> <!-- Used by installation/sdnc -->
30
31         <!-- docker images versions -->
32         <ccsdk.docker.alpine.j11.version>1.2-STAGING-latest</ccsdk.docker.alpine.j11.version> <!-- Used by dmaap-listener, ueb-listener -->
33         <ccsdk.docker.odlsli.alpine.version>1.2-SNAPSHOT-latest</ccsdk.docker.odlsli.alpine.version> <!-- Used by sdnc -->
34         <ccsdk.docker.ansible.server.version>1.2-STAGING-latest</ccsdk.docker.ansible.server.version> <!-- Used by ansible-server -->
35         <ccsdk.docker.ubuntu.version>1.2-STAGING-latest</ccsdk.docker.ubuntu.version> <!-- Used by admportal -->
36     </properties>
37
38     <modules>
39         <module>platform-logic</module>
40         <module>data-migrator</module>
41     </modules>
42
43     <scm>
44         <connection>scm:git:ssh://git@${onap.git.host}/sdnc-oam.git</connection>
45         <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-oam.git</developerConnection>
46         <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-oam/browse</url>
47         <tag>HEAD</tag>
48     </scm>
49     <issueManagement>
50         <system>JIRA</system>
51         <url>https://jira.onap.org/</url>
52     </issueManagement>
53     <ciManagement>
54         <system>Jenkins</system>
55         <url>https://jenkins.onap.org/</url>
56     </ciManagement>
57     <distributionManagement>
58         <site>
59             <id>sdnc-javadoc</id>
60             <url>dav:https://${onap.nexus.host}:${onap.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url>
61         </site>
62     </distributionManagement>
63
64     <dependencies>
65         <dependency>
66             <groupId>org.slf4j</groupId>
67             <artifactId>slf4j-api</artifactId>
68             <version>1.7.25</version>
69         </dependency>
70     </dependencies>
71
72     <build>
73         <plugins>
74             <plugin>
75                 <groupId>org.apache.maven.plugins</groupId>
76                 <artifactId>maven-surefire-plugin</artifactId>
77                 <version>2.17</version>
78                 <configuration>
79                     <skipTests>false</skipTests>
80                 </configuration>
81             </plugin>
82         </plugins>
83     </build>
84
85     <profiles>
86         <profile>
87             <id>blackduck</id>
88             <activation>
89                 <property>
90                     <name>blackduck-scan</name>
91                 </property>
92             </activation>
93             <build>
94                 <plugins>
95                     <plugin>
96                         <groupId>com.blackducksoftware.integration</groupId>
97                         <artifactId>hub-maven-plugin</artifactId>
98                         <version>1.4.0</version>
99                         <inherited>false</inherited>
100                         <configuration>
101                             <hubProjectName>${project.name}</hubProjectName>
102                             <outputDirectory>${project.basedir}</outputDirectory>
103                         </configuration>
104                         <executions>
105                             <execution>
106                                 <id>create-bdio-file</id>
107                                 <phase>package</phase>
108                                 <goals>
109                                     <goal>createHubOutput</goal>
110                                 </goals>
111                             </execution>
112                         </executions>
113                     </plugin>
114                 </plugins>
115             </build>
116         </profile>
117         <profile>
118             <id>docker</id>
119             <modules>
120                 <module>installation</module>
121             </modules>
122         </profile>
123     </profiles>
124 </project>