Release ccsdk/sli/adaptors
[ccsdk/sli/adaptors.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     <parent>
5         <groupId>org.onap.ccsdk.parent</groupId>
6         <artifactId>odlparent-lite</artifactId>
7         <version>1.5.6</version>
8     </parent>
9
10     <modelVersion>4.0.0</modelVersion>
11     <packaging>pom</packaging>
12     <groupId>org.onap.ccsdk.sli.adaptors</groupId>
13     <artifactId>ccsdk-sli-adaptors</artifactId>
14
15     <name>ccsdk-sli-adaptors</name>
16     <url>https://wiki.onap.org</url>
17     <description>The CCSDK core components contains the SLI, dblib and root pom</description>
18
19
20     <issueManagement>
21         <system>JIRA</system>
22         <url>https://jira.onap.org/</url>
23     </issueManagement>
24
25
26     <scm>
27         <connection>scm:git:ssh://git@${onap.git.host}/ccsdk/sli/adaptors</connection>
28         <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/ccsdk/sli/adaptors</developerConnection>
29         <url>${onap.git.protocol}://${onap.git.host}/ccsdk/sli/adaptors</url>
30         <tag>ccsdk-adaptors-${project.version}</tag>
31     </scm>
32
33     <ciManagement>
34         <system>Jenkins</system>
35         <url>https://jenkins.onap.org/</url>
36     </ciManagement>
37
38     <distributionManagement>
39         <site>
40             <id>sdnc-javadoc</id>
41             <url>
42                 dav:https://${onap.nexus.host}/content/sites/site/org/onap/sdnc/adaptors/${project.artifactId}/${project.version}
43             </url>
44         </site>
45     </distributionManagement>
46
47     <profiles>
48         <profile>
49             <id>blackduck</id>
50             <activation>
51                 <property>
52                     <name>blackduck-scan</name>
53                 </property>
54             </activation>
55             <build>
56                 <plugins>
57                     <plugin>
58                         <groupId>com.blackducksoftware.integration</groupId>
59                         <artifactId>hub-maven-plugin</artifactId>
60                         <version>1.4.0</version>
61                         <inherited>false</inherited>
62                         <configuration>
63                             <hubProjectName>${project.name}</hubProjectName>
64                             <outputDirectory>${project.basedir}</outputDirectory>
65                         </configuration>
66                         <executions>
67                             <execution>
68                                 <id>create-bdio-file</id>
69                                 <phase>package</phase>
70                                 <goals>
71                                     <goal>createHubOutput</goal>
72                                 </goals>
73                             </execution>
74                         </executions>
75                     </plugin>
76                 </plugins>
77
78
79             </build>
80
81         </profile>
82
83         <profile>
84             <id>dependency-list</id>
85             <build>
86                 <plugins>
87                     <plugin>
88                         <groupId>com.github.ferstl</groupId>
89                         <artifactId>depgraph-maven-plugin</artifactId>
90                         <executions>
91                             <execution>
92                                 <phase>validate</phase>
93                                 <inherited>false</inherited>
94                                 <goals>
95                                     <goal>aggregate</goal>
96                                 </goals>
97                             </execution>
98                         </executions>
99                     </plugin>
100                     <plugin>
101                         <groupId>org.codehaus.mojo</groupId>
102                         <artifactId>build-helper-maven-plugin</artifactId>
103                         <executions>
104                             <execution>
105                                 <id>attach-artifacts</id>
106                                 <phase>package</phase>
107                                 <inherited>false</inherited>
108                                 <goals>
109                                     <goal>attach-artifact</goal>
110                                 </goals>
111                                 <configuration>
112                                     <artifacts>
113                                         <artifact>
114                                             <file>${dependency-list.file}</file>
115                                             <type>txt</type>
116                                             <classifier>dependencies</classifier>
117                                         </artifact>
118                                     </artifacts>
119                                 </configuration>
120                             </execution>
121                         </executions>
122                     </plugin>
123                 </plugins>
124             </build>
125         </profile>
126
127     </profiles>
128
129     <build>
130         <plugins>
131             <plugin>
132                 <groupId>org.apache.maven.plugins</groupId>
133                 <artifactId>maven-surefire-plugin</artifactId>
134                 <version>2.17</version>
135                 <configuration>
136                     <skipTests>false</skipTests>
137                 </configuration>
138             </plugin>
139         </plugins>
140
141     </build>
142     <modules>
143         <module>aai-service</module>
144         <module>ansible-adapter</module>
145         <module>saltstack-adapter</module>
146         <module>netbox-client</module>      
147         <module>mdsal-resource</module>
148         <module>resource-assignment</module>
149         <module>sql-resource</module>
150             <module>base</module>
151         <module>message-router</module>
152         <module>features</module>
153         <module>artifacts</module>
154     </modules>
155     <organization>
156         <name>ONAP</name>
157     </organization>
158     <version>0.7.3</version>
159
160
161 </project>