Merge "Fix Blocker/Critical sonar issues"
[ccsdk/sli/core.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         <modelVersion>4.0.0</modelVersion>
5         <packaging>pom</packaging>
6         <groupId>org.onap.ccsdk.sli.core</groupId>
7         <artifactId>ccsdk-sli-core</artifactId>
8
9         <name>ccsdk-sli-core</name>
10         <url>https://wiki.onap.org</url>
11         <description>CCSDK core components contains the SLI, dblib</description>
12
13         <parent>
14                 <groupId>org.onap.ccsdk.parent</groupId>
15                 <artifactId>odlparent-carbon-sr1</artifactId>
16                 <version>0.0.1-SNAPSHOT</version>
17         </parent>
18
19         <issueManagement>
20                 <system>JIRA</system>
21                 <url>http://jira.onap.org/</url>
22         </issueManagement>
23
24
25         <scm>
26                 <connection>scm:git:ssh://git@${onap.git.host}/sdnc-code.git</connection>
27                 <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-core.git</developerConnection>
28                 <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-core/browse</url>
29                 <tag>sdnc-core-1.1.0</tag>
30         </scm>
31
32         <ciManagement>
33                 <system>Jenkins</system>
34                 <url>https://jenkins.onap.org/</url>
35         </ciManagement>
36
37
38         <distributionManagement>
39                 <repository>
40                         <id>ecomp-releases</id>
41                         <name>onap-repository-releases</name>
42                         <url>${onap.nexus.release-url}</url>
43                 </repository>
44                 <snapshotRepository>
45                         <id>ecomp-snapshots</id>
46                         <name>onap-repository-snapshots</name>
47                         <url>${onap.nexus.snapshot-url}</url>
48                 </snapshotRepository>
49                 <site>
50                         <id>ecomp-site</id>
51                         <url>dav:https://${onap.nexus.host}/content/sites/site/org/onap/sdnc/core/${project.artifactId}/${project.version}</url>
52                 </site>
53         </distributionManagement>
54
55
56         <profiles>
57                 <profile>
58                         <id>blackduck</id>
59                         <activation>
60                                 <property>
61                                         <name>blackduck-scan</name>
62                                 </property>
63                         </activation>
64                         <build>
65                                         <plugins>
66                                                 <plugin>
67                                                         <groupId>com.blackducksoftware.integration</groupId>
68                                                         <artifactId>hub-maven-plugin</artifactId>
69                                                         <version>1.4.0</version>
70                                                         <inherited>false</inherited>
71                                                         <configuration>
72                                                                 <hubProjectName>${project.name}</hubProjectName>
73                                                                 <outputDirectory>${project.basedir}</outputDirectory>
74                                                         </configuration>
75                                                         <executions>
76                                                                 <execution>
77                                                                         <id>create-bdio-file</id>
78                                                                         <phase>package</phase>
79                                                                         <goals>
80                                                                                 <goal>createHubOutput</goal>
81                                                                         </goals>
82                                                                 </execution>
83                                                         </executions>
84                                                 </plugin>
85                                         </plugins>
86
87
88
89                         </build>
90
91                 </profile>
92
93         </profiles>
94
95         <build>
96                 <plugins>
97
98                         <plugin>
99                                 <groupId>org.apache.maven.plugins</groupId>
100                                 <artifactId>maven-surefire-plugin</artifactId>
101                                 <version>2.17</version>
102                                 <configuration>
103                                         <skipTests>false</skipTests>
104                                 </configuration>
105                         </plugin>
106                         <plugin>
107                                 <groupId>org.sonatype.plugins</groupId>
108                                 <artifactId>nexus-staging-maven-plugin</artifactId>
109                                 <version>1.6.7</version>
110                                 <extensions>true</extensions>
111                                 <configuration>
112                                         <nexusUrl>https://${onap.nexus.host}</nexusUrl>
113                                         <stagingProfileId>${onap.nexus.staging.profile-id}</stagingProfileId>
114                                         <serverId>${onap.nexus.staging.server-id}</serverId>
115                                 </configuration>
116                         </plugin>
117
118                 </plugins>
119
120         </build>
121         <modules>
122                 <module>dblib</module>
123                 <module>sli</module>
124                 <module>filters</module>
125                 <module>sliPluginUtils</module>
126                 <module>sliapi</module>
127         </modules>
128         <organization>
129                 <name>ONAP</name>
130         </organization>
131         <version>0.1.2-SNAPSHOT</version>
132
133
134 </project>