Release version 1.1.0 of sli/core
[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/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.0-SNAPSHOT</version>
9                 <relativePath/>
10         </parent>
11
12         <groupId>org.onap.ccsdk.sli.core</groupId>
13         <artifactId>ccsdk-sli-core</artifactId>
14         <version>1.1.1-SNAPSHOT</version>
15         <packaging>pom</packaging>
16
17         <name>ccsdk-sli-core</name>
18         <description>CCSDK core components contains the SLI, dblib</description>
19         <url>https://wiki.onap.org</url>
20         <organization>
21                 <name>ONAP</name>
22         </organization>
23
24         <modules>
25         <module>utils</module>
26                 <module>dblib</module>
27                 <module>sli</module>
28                 <module>filters</module>
29                 <module>sliPluginUtils</module>
30                 <module>sliapi</module>
31                 <module>features</module>
32                 <module>artifacts</module>
33         </modules>
34
35         <scm>
36                 <connection>scm:git:ssh://git@${onap.git.host}/sdnc-code.git</connection>
37                 <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-core.git</developerConnection>
38                 <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-core/browse</url>
39                 <tag>sdnc-core-1.1.0</tag>
40         </scm>
41         <distributionManagement>
42                 <site>
43                         <id>ecomp-site</id>
44                         <url>dav:${onap.nexus.url}/${sitePath}</url>
45                 </site>
46         </distributionManagement>
47
48         <properties>
49                 <sitePath>content/sites/site/org/onap/ccsdk/sli/core/${project.version}/</sitePath>
50         </properties>
51
52         <profiles>
53                 <profile>
54                         <id>blackduck</id>
55                         <activation>
56                                 <property>
57                                         <name>blackduck-scan</name>
58                                 </property>
59                         </activation>
60                         <build>
61                                         <plugins>
62                                                 <plugin>
63                                                         <groupId>com.blackducksoftware.integration</groupId>
64                                                         <artifactId>hub-maven-plugin</artifactId>
65                                                         <version>1.4.0</version>
66                                                         <inherited>false</inherited>
67                                                         <configuration>
68                                                                 <hubProjectName>${project.name}</hubProjectName>
69                                                                 <outputDirectory>${project.basedir}</outputDirectory>
70                                                         </configuration>
71                                                         <executions>
72                                                                 <execution>
73                                                                         <id>create-bdio-file</id>
74                                                                         <phase>package</phase>
75                                                                         <goals>
76                                                                                 <goal>createHubOutput</goal>
77                                                                         </goals>
78                                                                 </execution>
79                                                         </executions>
80                                                 </plugin>
81                                         </plugins>
82                         </build>
83
84                 </profile>
85
86                 <profile>
87                         <id>dependency-list</id>
88                         <build>
89                                 <plugins>
90                                         <plugin>
91                                                 <groupId>com.github.ferstl</groupId>
92                                                 <artifactId>depgraph-maven-plugin</artifactId>
93                                                 <executions>
94                                                         <execution>
95                                                                 <phase>validate</phase>
96                                                                 <inherited>false</inherited>
97                                                                 <goals>
98                                                                         <goal>aggregate</goal>
99                                                                 </goals>
100                                                         </execution>
101                                                 </executions>
102                                         </plugin>
103                                         <plugin>
104                                                 <groupId>org.codehaus.mojo</groupId>
105                                                 <artifactId>build-helper-maven-plugin</artifactId>
106                                                 <executions>
107                                                         <execution>
108                                                                 <id>attach-artifacts</id>
109                                                                 <phase>package</phase>
110                                                                 <inherited>false</inherited>
111                                                                 <goals>
112                                                                         <goal>attach-artifact</goal>
113                                                                 </goals>
114                                                                 <configuration>
115                                                                         <artifacts>
116                                                                                 <artifact>
117                                                                                         <file>${dependency-list.file}</file>
118                                                                                         <type>txt</type>
119                                                                                         <classifier>dependencies</classifier>
120                                                                                 </artifact>
121                                                                         </artifacts>
122                                                                 </configuration>
123                                                         </execution>
124                                                 </executions>
125                                         </plugin>
126                                 </plugins>
127                         </build>
128                 </profile>
129
130         </profiles>
131 </project>