blob: 1895e6a1a5c2b0d71cf814651e466041e5d3dac0 [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>
Dan Timoney5de81962021-01-26 13:15:47 -05006 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
Dan Timoney764b6582021-03-09 11:47:09 -05008 <version>2.2.0-SNAPSHOT</version>
Dan Timoney8f2fcda2020-12-02 07:48:49 -05009 </parent>
10
11 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
Dan Timoney5de81962021-01-26 13:15:47 -050012 <artifactId>ccsdk-sli-adaptors</artifactId>
Dan Timoney764b6582021-03-09 11:47:09 -050013 <version>1.3.0-SNAPSHOT</version>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050014 <packaging>pom</packaging>
15
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050016 <name>${project.artifactId}</name>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050017 <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>
Singal, Kapil (ks220y)cb075002021-03-16 00:30:22 -040025 <module>ansible-adaptor</module>
26 <module>saltstack-adaptor</module>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050027 <module>netbox-client</module>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050028 <module>mdsal-resource</module>
29 <module>resource-assignment</module>
30 <module>sql-resource</module>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050031 <module>base</module>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050032 <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
Dan Timoney8f2fcda2020-12-02 07:48:49 -0500104 </build>
105
106 </profile>
107
108 <profile>
109 <id>dependency-list</id>
110 <build>
111 <plugins>
112 <plugin>
113 <groupId>com.github.ferstl</groupId>
114 <artifactId>depgraph-maven-plugin</artifactId>
115 <executions>
116 <execution>
117 <phase>validate</phase>
118 <inherited>false</inherited>
119 <goals>
120 <goal>aggregate</goal>
121 </goals>
122 </execution>
123 </executions>
124 </plugin>
125 <plugin>
126 <groupId>org.codehaus.mojo</groupId>
127 <artifactId>build-helper-maven-plugin</artifactId>
128 <executions>
129 <execution>
130 <id>attach-artifacts</id>
131 <phase>package</phase>
132 <inherited>false</inherited>
133 <goals>
134 <goal>attach-artifact</goal>
135 </goals>
136 <configuration>
137 <artifacts>
138 <artifact>
139 <file>${dependency-list.file}</file>
140 <type>txt</type>
141 <classifier>dependencies</classifier>
142 </artifact>
143 </artifacts>
144 </configuration>
145 </execution>
146 </executions>
147 </plugin>
148 </plugins>
149 </build>
150 </profile>
151
152 </profiles>
153</project>