Update version.properties
[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.1.0</version>
17         </parent>
18
19         <scm>
20                 <connection>scm:git:ssh://git@${onap.git.host}/sdnc-code.git</connection>
21                 <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-core.git</developerConnection>
22                 <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-core/browse</url>
23                 <tag>sdnc-core-1.1.0</tag>
24         </scm>
25
26
27 <!--
28         <distributionManagement>
29                 <repository>
30                         <id>ecomp-releases</id>
31                         <name>onap-repository-releases</name>
32                         <url>${onap.nexus.release-url}</url>
33                 </repository>
34                 <snapshotRepository>
35                         <id>ecomp-snapshots</id>
36                         <name>onap-repository-snapshots</name>
37                         <url>${onap.nexus.snapshot-url}</url>
38                 </snapshotRepository>
39                 <site>
40                         <id>ecomp-site</id>
41                         <url>dav:https://${onap.nexus.host}/content/sites/site/org/onap/sdnc/core/${project.artifactId}/${project.version}</url>
42                 </site>
43         </distributionManagement>
44 -->
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
79                         </build>
80
81                 </profile>
82
83         </profiles>
84
85         <build>
86                 <plugins>
87
88                         <plugin>
89                                 <groupId>org.apache.maven.plugins</groupId>
90                                 <artifactId>maven-surefire-plugin</artifactId>
91                                 <version>2.17</version>
92                                 <configuration>
93                                         <skipTests>false</skipTests>
94                                 </configuration>
95                         </plugin>
96                         <plugin>
97                                 <groupId>org.sonatype.plugins</groupId>
98                                 <artifactId>nexus-staging-maven-plugin</artifactId>
99                                 <version>1.6.7</version>
100                                 <extensions>true</extensions>
101                                 <configuration>
102                                         <nexusUrl>https://${onap.nexus.host}</nexusUrl>
103                                         <stagingProfileId>${onap.nexus.staging.profile-id}</stagingProfileId>
104                                         <serverId>${onap.nexus.staging.server-id}</serverId>
105                                 </configuration>
106                         </plugin>
107
108                 </plugins>
109
110         </build>
111         <modules>
112         <module>utils</module>
113                 <module>dblib</module>
114                 <module>sli</module>
115                 <module>filters</module>
116                 <module>sliPluginUtils</module>
117                 <module>sliapi</module>
118         </modules>
119         <organization>
120                 <name>ONAP</name>
121         </organization>
122         <version>0.1.3-SNAPSHOT</version>
123
124
125 </project>