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