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