blob: e746185a655a6e9a6e375ea6b88f20528e17968e [file] [log] [blame]
Dan Timoney0f2db3f2018-01-25 16:23:27 -05001<?xml version="1.0" encoding="UTF-8"?>
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -04002<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">
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -05003 <modelVersion>4.0.0</modelVersion>
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -04004
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -05005 <!-- PLEASE READ !!!!! This file is generated from ccsdk/parent/setup/src/main/template/pom-template.xml
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -04006 Any updates needed should be made to that template and not to the generated
7 pom.xml file -->
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -05008 <parent>
9 <groupId>org.opendaylight.odlparent</groupId>
10 <artifactId>bundle-parent</artifactId>
Michael Dürre2c39a4d2020-07-06 06:22:15 +020011 <version>5.0.7</version>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -050012 <relativePath/>
13 </parent>
Dan Timoney0f2db3f2018-01-25 16:23:27 -050014
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -050015 <groupId>org.onap.ccsdk.parent</groupId>
16 <artifactId>bundle-parent</artifactId>
Dan Timoneyaf076a92020-08-06 12:35:38 -040017 <version>2.0.1-SNAPSHOT</version>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -050018 <packaging>pom</packaging>
Dan Timoney0f2db3f2018-01-25 16:23:27 -050019
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -050020 <name>ONAP :: ${project.groupId} :: ${project.artifactId}</name>
21 <description>Root POM to be used in place of odlparent for CCSDK based projects</description>
22 <url>http://wiki.onap.org</url>
23 <organization>
24 <name>ONAP</name>
25 </organization>
Dan Timoney0f2db3f2018-01-25 16:23:27 -050026
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -050027 <issueManagement>
28 <system>JIRA</system>
29 <url>https://jira.onap.org/</url>
30 </issueManagement>
31 <distributionManagement>
32 <repository>
33 <id>ecomp-releases</id>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -050034 <url>${onap.nexus.release-url}</url>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -050035 </repository>
36 <snapshotRepository>
37 <id>ecomp-snapshots</id>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -050038 <url>${onap.nexus.snapshot-url}</url>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -050039 </snapshotRepository>
40 </distributionManagement>
Dan Timoney0f2db3f2018-01-25 16:23:27 -050041
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -050042 <properties>
Dan Timoney621888e2020-01-17 09:54:02 -050043 <!-- Sonar properties -->
44 <sonar.scanner.version>3.7.0.1746</sonar.scanner.version>
45 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
46 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
47 <!-- Default Sonar configuration -->
48 <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml,${project.reporting.outputDirectory}/jacoco-it/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
49 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
50 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
51
52 <!-- Jacoco properties -->
53 <jacoco.version>0.8.5</jacoco.version>
54
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -050055 <!-- properties from oparent -->
Michael Dürre2c39a4d2020-07-06 06:22:15 +020056 <maven.compiler.source>8</maven.compiler.source>
57 <maven.compiler.target>8</maven.compiler.target>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -050058 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
59 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
60 <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
61 <!-- sitePath may be overridden in the inheriting POM if desired -->
62 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
Singal, Kapil (ks220y)e14c10b2020-01-07 11:54:24 -050063
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -050064 <!-- If following file exist, auto-generation of swagger.json will be done -->
65 <swagger-properties>${basedir}/src/main/resources/swagger.properties</swagger-properties>
66 <!-- If following file exist, auto-generation of sdk will be done -->
67 <swagger-json>${basedir}/src/main/resources/swagger.json</swagger-json>
68 <!-- end of properties from oparent -->
Dan Timoney0f2db3f2018-01-25 16:23:27 -050069
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -050070 <!-- ONAP repositories -->
71 <onap.nexus.host>nexus.onap.org</onap.nexus.host>
72 <onap.nexus.port>443</onap.nexus.port>
73 <onap.nexus.protocol>https</onap.nexus.protocol>
74 <onap.nexus.public-url>https://nexus.onap.org/content/groups/public</onap.nexus.public-url>
75 <onap.nexus.staging-url>https://nexus.onap.org/content/groups/staging</onap.nexus.staging-url>
76 <onap.nexus.release-url>https://nexus.onap.org/content/repositories/releases</onap.nexus.release-url>
77 <onap.nexus.snapshot-url>https://nexus.onap.org/content/repositories/snapshots</onap.nexus.snapshot-url>
78 <onap.nexus.staging.server-id>ecomp-staging</onap.nexus.staging.server-id>
79 <onap.nexus.staging.profile-id>176c31dfe190a</onap.nexus.staging.profile-id>
Dan Timoney0f2db3f2018-01-25 16:23:27 -050080
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -050081 <!-- OpenDaylight repositories -->
82 <opendaylight.nexus.public-url>https://nexus.opendaylight.org/content/repositories/public/</opendaylight.nexus.public-url>
83 <opendaylight.nexus.snapshot-url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</opendaylight.nexus.snapshot-url>
Dan Timoney0f2db3f2018-01-25 16:23:27 -050084
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -050085 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Michael Dürre2c39a4d2020-07-06 06:22:15 +020086 <java.version.source>8</java.version.source>
87 <java.version.target>8</java.version.target>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -050088 <bundle.plugin.version>2.5.0</bundle.plugin.version>
89 <maven.compile.plugin.version>2.5.1</maven.compile.plugin.version>
90 <features.file>features.xml</features.file>
91 <jmxGeneratorPath>src/main/yang-gen-config</jmxGeneratorPath>
92 <salGeneratorPath>src/main/yang-gen-sal</salGeneratorPath>
93 <checkstyle.skip>true</checkstyle.skip>
Dan Timoney0f2db3f2018-01-25 16:23:27 -050094
Smokowski, Kevin (ks6305)9548ff82020-02-06 18:33:18 +000095 <!-- logging-analytics versions -->
Smokowski, Kevin (ks6305)3c69d3a2020-03-24 15:56:42 +000096 <logging-analytics.version>1.6.6</logging-analytics.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -050097
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -050098 <!-- CCSDK component versions -->
Dan Timoney2fce2f52020-03-24 08:40:37 -040099 <ccsdk.cds.version>1.0.0-SNAPSHOT</ccsdk.cds.version>
Singal, Kapil (ks220y)31a81942020-08-21 11:30:21 -0400100 <ccsdk.features.version>1.0.1-SNAPSHOT</ccsdk.features.version>
101 <ccsdk.sli.core.version>1.0.1-SNAPSHOT</ccsdk.sli.core.version>
102 <ccsdk.sli.adaptors.version>1.0.1-SNAPSHOT</ccsdk.sli.adaptors.version>
103 <ccsdk.sli.northbound.version>1.0.1-SNAPSHOT</ccsdk.sli.northbound.version>
104 <ccsdk.sli.plugins.version>1.0.1-SNAPSHOT</ccsdk.sli.plugins.version>
Dan Timoney2fce2f52020-03-24 08:40:37 -0400105 <ccsdk.distribution.version>1.0.0-SNAPSHOT</ccsdk.distribution.version>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500106 <sdnctl.sli.version>${ccsdk.sli.core.version}</sdnctl.sli.version>
107 <sdnctl.aai.service.version>${ccsdk.sli.adaptors.version}</sdnctl.aai.service.version>
108 <sdnctl.dblib.version>${ccsdk.sli.core.version}</sdnctl.dblib.version>
109 <sdnctl.mdsal.resource.version>${ccsdk.sli.adaptors.version}</sdnctl.mdsal.resource.version>
110 <sdnctl.slipluginutils.version>${ccsdk.sli.core.version}</sdnctl.slipluginutils.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500111
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500112 <!-- Support libraries used by OpenDaylight -->
Michael Dürre2c39a4d2020-07-06 06:22:15 +0200113 <odl.controller.mdsal.version>1.10.3</odl.controller.mdsal.version>
114 <odl.mdsal.version>4.0.14</odl.mdsal.version>
115 <odl.mdsal.model.version>2.0.14</odl.mdsal.model.version>
116 <odl.netconf.restconf.version>1.10.3</odl.netconf.restconf.version>
117 <odl.netconf.netconf.version>1.7.3</odl.netconf.netconf.version>
118 <odl.netconf.sal.rest.docgen.version>1.10.3</odl.netconf.sal.rest.docgen.version>
Timoney, Dan (dt5972)135e4072019-07-01 13:08:58 -0400119
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500120 <!-- Used by aaa, vtn -->
Michael Dürre2c39a4d2020-07-06 06:22:15 +0200121 <commons.codec.version>1.13</commons.codec.version>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500122 <!-- Used by netconf, ovsdb -->
123 <commons.lang3.version>3.8.1</commons.lang3.version>
124 <!-- Used by sfc, snmp4sdn; see also affinity, toolkit -->
125 <commons.lang.version>2.6</commons.lang.version>
126 <!-- Used by neutron; see also controller, vtn -->
127 <commons.net.version>3.6</commons.net.version>
128 <!-- Used by neutron -->
Michael Dürre2c39a4d2020-07-06 06:22:15 +0200129 <eclipse.persistence.version>2.7.4</eclipse.persistence.version>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500130 <!-- Used by aaa -->
131 <felix.dependencymanager.version>4.4.1</felix.dependencymanager.version>
132 <!-- Used by lacp, netconf, ovsdb, sfc, toolkit; see also vtn -->
133 <gson.version>2.8.5</gson.version>
134 <!-- Used by aaa, dlux, persistence, snmp4sdn, sxp -->
135 <guava.version>25.1-jre</guava.version>
136 <!-- Used by aaa, alto, netconf, ovsdb, sfc; see also affinity, defense4all,
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400137 integration/distribution, snmp4sdn, toolkit, ttp -->
Michael Dürre2c39a4d2020-07-06 06:22:15 +0200138 <jackson.version>2.9.10</jackson.version>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500139 <!-- Used by snmp4sdn, yangtools -->
140 <javassist.version>3.24.1-GA</javassist.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500141
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500142 <!-- FIXME remove all dependencies for jersey 1.17 after migration all projects -->
143 <!-- Used by aaa, alto, netconf, neutron, sfc; see also affinity, defense4all, snmp4sdn, toolkit -->
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500144 <jersey.version>2.25.1</jersey.version>
145 <!-- Used by sfc -->
146 <jersey.client.version>2.25.1</jersey.client.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500147
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500148 <!-- New packages for jersey migration 1.17 to 2.8 -->
149 <!-- appache.geronimo.bundle for DocGen -->
150 <!-- Used by aaa, iotdm, netconf, ovsdb, sfc -->
151 <org.json.version>20131018</org.json.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500152
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500153 <!-- Used everywhere -->
154 <junit.version>4.12</junit.version>
155 <!-- Used by coretutorials, sfc, snmp4sdn, sxp; see also affinity, toolkit -->
156 <logback.version>1.2.3</logback.version>
157 <!-- Used by nic, sfc, sxp, tsdr -->
158 <mockito.version>1.10.19</mockito.version>
159 <!-- Used by bgpcep, netconf, ovsdb, sxp; see also opendove, toolkit -->
Michael Dürre2c39a4d2020-07-06 06:22:15 +0200160 <netty.version>4.1.42.Final</netty.version>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500161 <!-- Used by openflowjava, persistence, sfc, snmp4sdn, sxp; see also affinity, toolkit -->
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500162 <slf4j.version>1.7.25</slf4j.version>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500163 <!-- Used in integration/distribution; see also affinity, snmp4sdn, toolkit, tsdr, ttp -->
Singal, Kapil (ks220y)b5adc452020-02-20 13:53:41 -0500164 <spring.version>4.3.25.RELEASE</spring.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500165
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500166 <!-- Extra support libraries used by SDN-C -->
167 <jvnet.jaxb2.version>0.6.4</jvnet.jaxb2.version>
168 <antlr.version>4.7.2</antlr.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500169
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500170 <eelf.maven.plugin.version>1.0.0</eelf.maven.plugin.version>
Timoney, Dan (dt5972)ebc00be2018-03-21 09:00:19 -0400171
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500172 <!-- Managed dependency versions -->
Timoney, Dan (dt5972)48f55772019-12-17 10:44:04 -0500173 <apache.httpcomponents.core.version>4.4.12</apache.httpcomponents.core.version>
174 <apache.httpcomponents.client.version>4.5.10</apache.httpcomponents.client.version>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500175 <derby.version>10.14.2.0</derby.version>
176 <eelf.version>1.0.0</eelf.version>
Timoney, Dan (dt5972)48f55772019-12-17 10:44:04 -0500177 <grpc.version>1.21.1</grpc.version>
178 <mariadb.connector.version>2.4.4</mariadb.connector.version>
179 <mariadb4j.version>2.4.0</mariadb4j.version>
180 <testng.version>6.14.3</testng.version>
Rich Tabedzkifce995d2020-03-11 11:06:57 -0400181 <tomcat-jdbc.version>9.0.30</tomcat-jdbc.version>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500182 <jetty.version>9.4.12.v20180830</jetty.version>
183 <skip.karaf.featureTest>true</skip.karaf.featureTest>
Timoney, Dan (dt5972)94fcbc22019-12-10 09:18:51 -0500184 <dependency-list.file>direct-dependencies.txt</dependency-list.file>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500185 </properties>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500186
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500187 <dependencyManagement>
188 <dependencies>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500189 <!-- Note: If value in BOM conflicts with value inherited from
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400190 parent pom, inherited value takes precedence. This seems more like
191 a bug than a feature, but this is how maven 3.6 works -->
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500192 <dependency>
193 <groupId>org.onap.ccsdk.parent</groupId>
194 <artifactId>dependencies-odl-bom</artifactId>
Dan Timoneyaf076a92020-08-06 12:35:38 -0400195 <version>2.0.1-SNAPSHOT</version>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500196 <type>pom</type>
197 <scope>import</scope>
198 </dependency>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500199 <dependency>
200 <groupId>org.onap.logging-analytics</groupId>
201 <artifactId>logging-slf4j</artifactId>
Smokowski, Kevin (ks6305)9548ff82020-02-06 18:33:18 +0000202 <version>${logging-analytics.version}</version>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500203 </dependency>
204 <dependency>
205 <groupId>org.onap.logging-analytics</groupId>
206 <artifactId>logging-filter-base</artifactId>
Smokowski, Kevin (ks6305)9548ff82020-02-06 18:33:18 +0000207 <version>${logging-analytics.version}</version>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500208 </dependency>
Singal, Kapil (ks220y)ffff34a2020-02-27 11:02:51 -0500209 <dependency>
210 <groupId>junit</groupId>
211 <artifactId>junit</artifactId>
212 <version>${junit.version}</version>
213 <scope>test</scope>
214 </dependency>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500215 </dependencies>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500216 </dependencyManagement>
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400217
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500218 <repositories>
219 <repository>
220 <id>onap-public</id>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500221 <url>${onap.nexus.public-url}</url>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500222 <releases>
223 <enabled>true</enabled>
224 <updatePolicy>never</updatePolicy>
225 </releases>
226 <snapshots>
227 <enabled>true</enabled>
228 <updatePolicy>always</updatePolicy>
229 </snapshots>
230 </repository>
231 <repository>
232 <id>onap-staging</id>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500233 <url>${onap.nexus.staging-url}</url>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500234 <releases>
235 <enabled>true</enabled>
236 <updatePolicy>never</updatePolicy>
237 </releases>
238 <snapshots>
239 <enabled>true</enabled>
240 <updatePolicy>always</updatePolicy>
241 </snapshots>
242 </repository>
243 <repository>
244 <id>ecomp-release</id>
245 <name>onap-repository-releases</name>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500246 <url>${onap.nexus.release-url}</url>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500247 <releases>
248 <enabled>true</enabled>
249 <updatePolicy>never</updatePolicy>
250 </releases>
251 <snapshots>
252 <enabled>false</enabled>
253 </snapshots>
254 </repository>
255 <repository>
256 <id>ecomp-snapshot</id>
257 <name>onap-repository-snapshots</name>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500258 <url>${onap.nexus.snapshot-url}</url>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500259 <releases>
260 <enabled>false</enabled>
261 </releases>
262 <snapshots>
263 <enabled>true</enabled>
264 </snapshots>
265 </repository>
266 <repository>
267 <id>opendaylight-mirror</id>
268 <name>opendaylight-mirror</name>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500269 <url>${opendaylight.nexus.public-url}</url>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500270 <releases>
271 <enabled>true</enabled>
272 <updatePolicy>never</updatePolicy>
273 </releases>
274 <snapshots>
275 <enabled>false</enabled>
276 </snapshots>
277 </repository>
278 <repository>
279 <id>opendaylight-snapshot</id>
280 <name>opendaylight-snapshot</name>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500281 <url>${opendaylight.nexus.snapshot-url}</url>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500282 <releases>
283 <enabled>false</enabled>
284 </releases>
285 <snapshots>
286 <enabled>true</enabled>
287 </snapshots>
288 </repository>
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400289
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500290 </repositories>
291 <pluginRepositories>
292 <pluginRepository>
293 <id>onap-public</id>
294 <url>${onap.nexus.public-url}</url>
295 <releases>
296 <enabled>true</enabled>
297 </releases>
298 <snapshots>
299 <enabled>true</enabled>
300 </snapshots>
301 </pluginRepository>
302 <pluginRepository>
303 <id>onap-staging</id>
304 <url>${onap.nexus.staging-url}</url>
305 <releases>
306 <enabled>true</enabled>
307 </releases>
308 <snapshots>
309 <enabled>true</enabled>
310 </snapshots>
311 </pluginRepository>
312 <pluginRepository>
313 <id>onap-snapshot</id>
314 <url>${onap.nexus.snapshot-url}</url>
315 <releases>
316 <enabled>false</enabled>
317 </releases>
318 <snapshots>
319 <enabled>true</enabled>
320 </snapshots>
321 </pluginRepository>
322 <pluginRepository>
323 <id>opendaylight-mirror</id>
324 <name>opendaylight-mirror</name>
325 <url>${opendaylight.nexus.public-url}</url>
326 <releases>
327 <enabled>true</enabled>
328 <updatePolicy>never</updatePolicy>
329 </releases>
330 <snapshots>
331 <enabled>false</enabled>
332 </snapshots>
333 </pluginRepository>
334 <pluginRepository>
335 <id>opendaylight-snapshot</id>
336 <name>opendaylight-snapshot</name>
337 <url>${opendaylight.nexus.snapshot-url}</url>
338 <releases>
339 <enabled>false</enabled>
340 </releases>
341 <snapshots>
342 <enabled>true</enabled>
343 </snapshots>
344 </pluginRepository>
345 <!-- Black Duck plugin dependencies -->
346 <pluginRepository>
347 <id>JCenter</id>
348 <name>JCenter Repository</name>
349 <url>http://jcenter.bintray.com</url>
350 </pluginRepository>
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400351
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500352 <pluginRepository>
353 <id>Restlet</id>
354 <name>Restlet Repository</name>
355 <url>http://maven.restlet.com</url>
356 </pluginRepository>
357 </pluginRepositories>
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400358
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500359 <build>
360 <pluginManagement>
361 <plugins>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500362 <!-- Plugins from ONAP version (parent of oparent) -->
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500363 <plugin>
364 <groupId>org.apache.maven.plugins</groupId>
365 <artifactId>maven-deploy-plugin</artifactId>
366 <!-- This version supports the "deployAtEnd" parameter -->
367 <version>2.8</version>
368 <configuration>
369 <skip/>
370 </configuration>
371 </plugin>
372 <plugin>
373 <groupId>org.apache.maven.plugins</groupId>
374 <artifactId>maven-site-plugin</artifactId>
375 <version>3.6</version>
376 <dependencies>
377 <dependency>
378 <groupId>org.apache.maven.wagon</groupId>
379 <artifactId>wagon-webdav-jackrabbit</artifactId>
380 <version>2.10</version>
381 </dependency>
382 </dependencies>
383 </plugin>
384 <plugin>
385 <groupId>org.apache.maven.plugins</groupId>
386 <artifactId>maven-enforcer-plugin</artifactId>
387 <version>3.0.0-M2</version>
388 <executions>
389 <execution>
390 <id>enforce-property</id>
391 <goals>
392 <goal>enforce</goal>
393 </goals>
394 <configuration>
395 <rules>
396 <requireProperty>
397 <property>onap.nexus.url</property>
398 <message>You must set a onap.nexus.url property in your
399 ~/.m2/settings.xml. See oparent/settings.xml for an example.
400 </message>
401 </requireProperty>
402 </rules>
403 <fail>true</fail>
404 </configuration>
405 </execution>
406 <execution>
407 <id>enforce-no-snapshots</id>
408 <goals>
409 <goal>enforce</goal>
410 </goals>
411 <configuration>
412 <rules>
413 <requireReleaseDeps>
414 <failWhenParentIsSnapshot>false</failWhenParentIsSnapshot>
415 <onlyWhenRelease>true</onlyWhenRelease>
416 <level>WARN</level>
417 </requireReleaseDeps>
418 </rules>
419 </configuration>
420 </execution>
Michael Dürre2c39a4d2020-07-06 06:22:15 +0200421 <execution>
422 <id>enforce-maven</id>
423 <goals>
424 <goal>enforce</goal>
425 </goals>
426 <configuration>
427 <rules>
428 <requireJavaVersion>
429 <version>8</version>
430 </requireJavaVersion>
431 <requireMavenVersion>
432 <version>[3.5.0,)</version>
433 </requireMavenVersion>
434 </rules>
435 </configuration>
436 </execution>
437 <execution>
438 <id>enforce-banned-dependencies</id>
439 <goals>
440 <goal>enforce</goal>
441 </goals>
442 <configuration>
443 <rules>
444 <bannedDependencies>
445 <message>Please always use mockito-core instead of mockito-all (see https://bugs.opendaylight.org/show_bug.cgi?id=7662), and spotbugs:annotations instead of findbugs:annotations</message>
446 <excludes>
447 <exclude>org.mockito:mockito-all</exclude>
448 <!-- <exclude>com.google.code.findbugs:annotations</exclude> -->
449 </excludes>
450 </bannedDependencies>
451 </rules>
452 <fail>true</fail>
453 </configuration>
454 </execution>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500455 </executions>
456 </plugin>
457 <!-- https://mvnrepository.com/artifact/org.sonarsource.scanner.maven/sonar-maven-plugin -->
458 <plugin>
459 <groupId>org.sonarsource.scanner.maven</groupId>
460 <artifactId>sonar-maven-plugin</artifactId>
Dan Timoney621888e2020-01-17 09:54:02 -0500461 <version>${sonar.scanner.version}</version>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500462 </plugin>
463 <!-- end of plugins from ONAP version (parent of oparent) -->
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400464
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500465 <!-- Plugins from ONAP oparent -->
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500466 <plugin>
467 <groupId>org.apache.maven.plugins</groupId>
468 <artifactId>maven-surefire-plugin</artifactId>
469 <version>2.22.0</version>
470 <configuration>
471 <!-- Sets the VM argument line used when unit tests are run. -->
472 <argLine>${surefireArgLine}</argLine>
473 <!-- Excludes integration tests when unit tests are run. -->
474 <excludes>
475 <exclude>**/IT*.java</exclude>
476 </excludes>
477 </configuration>
478 </plugin>
479 <plugin>
480 <groupId>org.apache.maven.plugins</groupId>
481 <artifactId>maven-failsafe-plugin</artifactId>
482 <version>2.22.0</version>
483 <executions>
484 <!-- Ensures that both integration-test and verify goals of the Failsafe
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400485 Maven plugin are executed. -->
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500486 <execution>
487 <id>integration-tests</id>
488 <goals>
489 <goal>integration-test</goal>
490 <goal>verify</goal>
491 </goals>
492 <configuration>
493 <!-- Sets the VM argument line used when integration tests are run. -->
494 <argLine>${failsafeArgLine}</argLine>
495 </configuration>
496 </execution>
497 </executions>
498 </plugin>
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400499
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500500 <!-- End of plugins from ONAP oparent -->
501 <plugin>
502 <groupId>org.codehaus.mojo</groupId>
503 <artifactId>properties-maven-plugin</artifactId>
504 <version>1.0.0</version>
505 <executions>
506 <execution>
507 <goals>
508 <goal>set-system-properties</goal>
509 </goals>
510 <configuration>
511 <properties>
512 <property>
513 <name>maven.wagon.http.ssl.allowall</name>
514 <value>${ssl.allowall}</value>
515 </property>
516 <property>
517 <name>maven.wagon.http.ssl.insecure</name>
518 <value>${ssl.insecure}</value>
519 </property>
520 </properties>
521 </configuration>
522 </execution>
523 </executions>
524 </plugin>
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400525
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500526 <plugin>
527 <groupId>org.codehaus.mojo</groupId>
528 <artifactId>versions-maven-plugin</artifactId>
529 <version>2.5</version>
530 <configuration>
531 <processAllModules>true</processAllModules>
532 </configuration>
533 </plugin>
534 <plugin>
535 <artifactId>maven-scm-plugin</artifactId>
536 <version>1.8.1</version>
537 <configuration>
538 <tag>${project.artifactId}-${project.version}</tag>
539 </configuration>
540 </plugin>
Timoney, Dan (dt5972)94fcbc22019-12-10 09:18:51 -0500541 <plugin>
542 <groupId>com.github.ferstl</groupId>
543 <artifactId>depgraph-maven-plugin</artifactId>
544 <version>3.3.0</version>
545 <configuration>
546 <graphFormat>text</graphFormat>
547 <outputFileName>${dependency-list.file}</outputFileName>
548 <outputDirectory>${project.basedir}</outputDirectory>
549 <transitiveExcludes>*</transitiveExcludes>
550 <showVersions>true</showVersions>
Timoney, Dan (dt5972)cc0c96a2019-12-11 10:04:52 -0500551 <showGroupIds>true</showGroupIds>
Timoney, Dan (dt5972)94fcbc22019-12-10 09:18:51 -0500552 </configuration>
553 </plugin>
Michael Dürre66430cc2020-08-24 14:39:08 +0200554 <plugin>
555 <groupId>de.jacks-it-lab</groupId>
556 <artifactId>frontend-maven-plugin</artifactId>
557 <version>1.7.2</version>
558 </plugin>
559 <plugin>
560 <groupId>com.github.alexcojocaru</groupId>
561 <artifactId>elasticsearch-maven-plugin</artifactId>
562 <version>6.16</version>
563 <configuration>
564 <version>7.1.1</version>
565 </configuration>
566 </plugin>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500567 </plugins>
568 </pluginManagement>
569 <plugins>
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400570
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500571 <!-- Plugins from oparent version (parent of oparent) -->
572 <plugin>
573 <groupId>org.apache.maven.plugins</groupId>
574 <artifactId>maven-deploy-plugin</artifactId>
575 </plugin>
576 <plugin>
577 <groupId>org.apache.maven.plugins</groupId>
578 <artifactId>maven-site-plugin</artifactId>
579 </plugin>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500580 <!-- end of plugins from oparent version (parent of oparent) -->
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400581
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500582 <!-- Plugins from oparent -->
583 <plugin>
584 <artifactId>maven-checkstyle-plugin</artifactId>
585 <version>2.17</version>
586 <dependencies>
587 <dependency>
588 <groupId>org.onap.oparent</groupId>
589 <artifactId>checkstyle</artifactId>
590 <version>1.2.2</version>
591 </dependency>
592 </dependencies>
593 <executions>
594 <execution>
595 <id>onap-license</id>
596 <goals>
597 <goal>check</goal>
598 </goals>
599 <phase>process-sources</phase>
600 <configuration>
601 <configLocation>onap-checkstyle/check-license.xml</configLocation>
602 <includeResources>false</includeResources>
603 <includeTestSourceDirectory>true</includeTestSourceDirectory>
604 <includeTestResources>false</includeTestResources>
605 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
606 <excludes>
607 </excludes>
608 <consoleOutput>true</consoleOutput>
609 <failOnViolation>false</failOnViolation>
610 </configuration>
611 </execution>
612 <execution>
613 <id>onap-java-style</id>
614 <goals>
615 <goal>check</goal>
616 </goals>
617 <phase>process-sources</phase>
618 <configuration>
619 <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400620 with minor changes -->
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500621 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500622 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500623 <sourceDirectory>${project.build.sourceDirectory}/src/main/java</sourceDirectory>
624 <includeResources>true</includeResources>
625 <includeTestSourceDirectory>true</includeTestSourceDirectory>
626 <includeTestResources>true</includeTestResources>
627 <excludes>
628 </excludes>
629 <consoleOutput>true</consoleOutput>
630 <failOnViolation>false</failOnViolation>
631 </configuration>
632 </execution>
633 </executions>
634 </plugin>
635 <plugin>
636 <groupId>org.codehaus.mojo</groupId>
637 <artifactId>build-helper-maven-plugin</artifactId>
638 <version>1.12</version>
639 </plugin>
640 <!-- Jacoco / Sonar -->
641 <plugin>
642 <groupId>org.jacoco</groupId>
643 <artifactId>jacoco-maven-plugin</artifactId>
Dan Timoney621888e2020-01-17 09:54:02 -0500644 <version>${jacoco.version}</version>
645 <executions>
646 <execution>
647 <id>pre-unit-test</id>
648 <goals>
649 <goal>prepare-agent</goal>
650 </goals>
651 <configuration>
652 <!-- Sets the path to the file which contains the execution data. -->
653 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500654 <!-- Sets the name of the property containing the settings for JaCoCo runtime agent. -->
Dan Timoney621888e2020-01-17 09:54:02 -0500655 <propertyName>surefireArgLine</propertyName>
656 </configuration>
657 </execution>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500658 <!-- Ensures that the code coverage report for unit tests is created after unit tests have been run. -->
Dan Timoney621888e2020-01-17 09:54:02 -0500659 <execution>
660 <id>post-unit-test</id>
661 <phase>test</phase>
662 <goals>
663 <goal>report</goal>
664 </goals>
665 <configuration>
666 <!-- Sets the path to the file which contains the execution data. -->
667 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
668 <!-- Sets the output directory for the code coverage report. -->
669 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
670 </configuration>
671 </execution>
672 <execution>
673 <id>pre-integration-test</id>
674 <phase>pre-integration-test</phase>
675 <goals>
676 <goal>prepare-agent</goal>
677 </goals>
678 <configuration>
679 <!-- Sets the path to the file which contains the execution data. -->
680 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500681 <!-- Sets the name of the property containing the settings for JaCoCo runtime agent. -->
Dan Timoney621888e2020-01-17 09:54:02 -0500682 <propertyName>failsafeArgLine</propertyName>
683 </configuration>
684 </execution>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500685 <!-- Ensures that the code coverage report for integration tests after integration tests have been run. -->
Dan Timoney621888e2020-01-17 09:54:02 -0500686 <execution>
687 <id>post-integration-test</id>
688 <phase>post-integration-test</phase>
689 <goals>
690 <goal>report</goal>
691 </goals>
692 <configuration>
693 <!-- Sets the path to the file which contains the execution data. -->
694 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
695 <!-- Sets the output directory for the code coverage report. -->
696 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
697 </configuration>
698 </execution>
699 <execution>
700 <id>default-prepare-agent</id>
701 <goals>
702 <goal>prepare-agent</goal>
703 </goals>
704 </execution>
705 <execution>
706 <id>default-report</id>
707 <phase>prepare-package</phase>
708 <goals>
709 <goal>report</goal>
710 </goals>
711 </execution>
712 <execution>
713 <id>default-check</id>
714 <goals>
715 <goal>check</goal>
716 </goals>
717 <configuration>
718 <rules>
719 <rule>
720 <element>PACKAGE</element>
721 <limits>
722 <limit>
723 <counter>COMPLEXITY</counter>
724 <value>COVEREDRATIO</value>
725 <minimum>0.0</minimum>
726 </limit>
727 </limits>
728 </rule>
729 </rules>
730 </configuration>
731 </execution>
732 </executions>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500733 </plugin>
734 <plugin>
735 <groupId>org.apache.maven.plugins</groupId>
736 <artifactId>maven-surefire-plugin</artifactId>
737 </plugin>
738 <plugin>
739 <groupId>org.apache.maven.plugins</groupId>
740 <artifactId>maven-failsafe-plugin</artifactId>
741 </plugin>
742 <!-- end of plugins from oparent -->
743 <plugin>
744 <groupId>org.apache.maven.plugins</groupId>
745 <artifactId>maven-javadoc-plugin</artifactId>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500746 <executions>
747 <execution>
748 <id>attach-javadocs</id>
749 <goals>
750 <goal>jar</goal>
751 </goals>
752 <configuration>
753 <additionalparam>-Xdoclint:none</additionalparam>
754 </configuration>
755 </execution>
756 </executions>
757 </plugin>
Michael Dürre2c39a4d2020-07-06 06:22:15 +0200758 <plugin>
759 <artifactId>maven-enforcer-plugin</artifactId>
760 <version>3.0.0-M2</version>
761 <executions>
762 <execution>
763 <id>enforce-property</id>
764 <goals>
765 <goal>enforce</goal>
766 </goals>
767 <configuration>
768 <rules>
769 <requireProperty>
770 <property>onap.nexus.url</property>
771 <message>You must set a onap.nexus.url property in your
772 ~/.m2/settings.xml. See oparent/settings.xml for an example.</message>
773 </requireProperty>
774 </rules>
775 <fail>true</fail>
776 </configuration>
777 </execution>
778 <execution>
779 <id>enforce-no-snapshots</id>
780 <goals>
781 <goal>enforce</goal>
782 </goals>
783 <configuration>
784 <rules>
785 <requireReleaseDeps>
786 <failWhenParentIsSnapshot>false</failWhenParentIsSnapshot>
787 <onlyWhenRelease>true</onlyWhenRelease>
788 <level>WARN</level>
789 </requireReleaseDeps>
790 </rules>
791 </configuration>
792 </execution>
793 <execution>
794 <id>enforce-maven</id>
795 <goals>
796 <goal>enforce</goal>
797 </goals>
798 <configuration>
799 <rules>
800 <requireJavaVersion>
801 <version>1.8.0</version>
802 </requireJavaVersion>
803 <requireMavenVersion>
804 <version>[3.5.0,)</version>
805 </requireMavenVersion>
806 </rules>
807 </configuration>
808 </execution>
809 <execution>
810 <id>enforce-banned-dependencies</id>
811 <goals>
812 <goal>enforce</goal>
813 </goals>
814 <configuration>
815 <rules>
816 <bannedDependencies>
817 <message>Please always use mockito-core instead of mockito-all (see https://bugs.opendaylight.org/show_bug.cgi?id=7662), and spotbugs:annotations instead of findbugs:annotations</message>
818 <excludes>
819 <exclude>org.mockito:mockito-all</exclude>
820<!-- <exclude>com.google.code.findbugs:annotations</exclude> -->
821 </excludes>
822 </bannedDependencies>
823 </rules>
824 <fail>true</fail>
825 </configuration>
826 </execution>
827 </executions>
828 </plugin>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500829 </plugins>
830 </build>
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400831
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500832 <reporting>
833 <plugins>
834 <plugin>
835 <artifactId>maven-javadoc-plugin</artifactId>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500836 <configuration>
837 <failOnError>false</failOnError>
838 <additionalparam>-Xdoclint:none</additionalparam>
839 </configuration>
840 </plugin>
841 </plugins>
842 </reporting>
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400843
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500844 <profiles>
845 <!-- Profiles from ONAP oparent -->
846 <profile>
847 <id>generate-json</id>
848 <activation>
849 <file>
850 <exists>${swagger-properties}</exists>
851 </file>
852 <property>
853 <name>swagger-sdk.generate-json</name>
854 </property>
855 </activation>
856 <build>
857 <plugins>
858 <plugin>
859 <groupId>org.codehaus.mojo</groupId>
860 <artifactId>properties-maven-plugin</artifactId>
861 <version>1.0.0</version>
862 <executions>
863 <execution>
864 <phase>initialize</phase>
865 <goals>
866 <goal>read-project-properties</goal>
867 </goals>
868 <configuration>
869 <files>
870 <file>${basedir}/src/main/resources/swagger.properties</file>
871 </files>
872 </configuration>
873 </execution>
874 </executions>
875 </plugin>
876 <plugin>
877 <groupId>com.github.kongchen</groupId>
878 <artifactId>swagger-maven-plugin</artifactId>
879 <version>3.1.4</version>
880 <configuration>
881 <apiSources>
882 <apiSource>
883 <locations>${api-rest-package}</locations>
884 <schemes>http,https</schemes>
885 <host>${api-host-ip}:${api-host-port}</host>
886 <basePath>${api-base-path}</basePath>
887 <info>
888 <title>${api-title}</title>
889 <version>${api-version}</version>
890 <description>${api-description}</description>
891 <license>
892 <name>${api-license}</name>
893 </license>
894 </info>
895 <swaggerDirectory>${basedir}/src/main/resources</swaggerDirectory>
896 </apiSource>
897 </apiSources>
898 </configuration>
899 <executions>
900 <execution>
901 <phase>compile</phase>
902 <goals>
903 <goal>generate</goal>
904 </goals>
905 </execution>
906 </executions>
907 </plugin>
908 <plugin>
909 <groupId>org.apache.maven.plugins</groupId>
910 <artifactId>maven-install-plugin</artifactId>
911 <version>2.3.1</version>
912 <executions>
913 <execution>
914 <id>install-file-id</id>
915 <phase>install</phase>
916 <goals>
917 <goal>install-file</goal>
918 </goals>
919 <configuration>
920 <file>${basedir}/src/main/resources/swagger.json</file>
921 <groupId>${project.groupId}</groupId>
922 <artifactId>${project.artifactId}-swagger-schema</artifactId>
923 <version>${project.version}</version>
924 <packaging>json</packaging>
925 </configuration>
926 </execution>
927 </executions>
928 </plugin>
929 </plugins>
930 </build>
931 </profile>
932 <profile>
933 <id>generate-sdk</id>
934 <activation>
935 <file>
936 <exists>${swagger-json}</exists>
937 </file>
938 <property>
939 <name>swagger-sdk.generate-java-sdk</name>
940 </property>
941 </activation>
942 <build>
943 <plugins>
944 <plugin>
945 <groupId>org.apache.maven.plugins</groupId>
946 <artifactId>maven-antrun-plugin</artifactId>
947 <version>1.8</version>
948 <executions>
949 <execution>
950 <phase>initialize</phase>
951 <id>ant-create-script</id>
952 <configuration>
953 <exportAntProperties>true</exportAntProperties>
954 <tasks>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500955 <taskdef resource="net/sf/antcontrib/antlib.xml" classpathref="maven.plugin.classpath"/>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500956 <condition property="is_windows" value="true">
957 <os family="windows"/>
958 </condition>
959 <condition property="isLinux" value="true">
960 <os family="unix"/>
961 </condition>
962 <if>
963 <equals arg1="${is_windows}" arg2="true"/>
964 <then>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500965 <property name="swagger.sdk.script.file" value="generated-source-script.bat"/>
966 <echo file="${project.build.directory}${file.separator}generated-source-script.bat" append="true"
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500967 message="cd ${project.build.directory}${file.separator}generated-sources${line.separator}"/>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500968 <echo file="${project.build.directory}${file.separator}generated-source-script.bat" append="true"
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500969 message="mvn clean install -Dmaven.test.skip=true${line.separator}"/>
970 </then>
971 <else>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500972 <property name="swagger.sdk.script.file" value="generated-source-script.sh"/>
973 <echo file="${project.build.directory}${file.separator}generated-source-script.sh" append="true"
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500974 message="cd ${project.build.directory}${file.separator}generated-sources${line.separator}"/>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500975 <echo file="${project.build.directory}${file.separator}generated-source-script.sh" append="true"
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500976 message="mvn clean install -Dmaven.test.skip=true${line.separator}"/>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500977 <chmod file="${project.build.directory}${file.separator}generated-source-script.sh" perm="755"/>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500978 </else>
979 </if>
980 </tasks>
981 </configuration>
982 <goals>
983 <goal>run</goal>
984 </goals>
985 </execution>
986 </executions>
987 <dependencies>
988 <dependency>
989 <groupId>ant-contrib</groupId>
990 <artifactId>ant-contrib</artifactId>
991 <version>1.0b3</version>
992 <exclusions>
993 <exclusion>
994 <groupId>ant</groupId>
995 <artifactId>ant</artifactId>
996 </exclusion>
997 </exclusions>
998 </dependency>
999 </dependencies>
1000 </plugin>
1001 <plugin>
1002 <groupId>io.swagger</groupId>
1003 <artifactId>swagger-codegen-maven-plugin</artifactId>
1004 <version>2.2.1</version>
1005 <executions>
1006 <execution>
1007 <goals>
1008 <goal>generate</goal>
1009 </goals>
1010 <configuration>
1011 <inputSpec>${basedir}/src/main/resources/swagger.json</inputSpec>
1012 <output>${project.build.directory}/generated-sources</output>
1013 <language>java</language>
1014 <configOptions>
1015 <dateLibrary>joda</dateLibrary>
1016 </configOptions>
1017 <library>jersey2</library>
1018 <groupId>${project.groupId}</groupId>
1019 <artifactId>${project.artifactId}-java-sdk</artifactId>
1020 <artifactVersion>${project.version}</artifactVersion>
1021 <modelPackage>${project.groupId}.${project.artifactId}.client.model</modelPackage>
1022 <apiPackage>${project.groupId}.${project.artifactId}.client.api</apiPackage>
1023 <invokerPackage>${project.groupId}.${project.artifactId}.client.invoker</invokerPackage>
1024 </configuration>
1025 </execution>
1026 </executions>
1027 </plugin>
1028 <plugin>
1029 <groupId>org.codehaus.mojo</groupId>
1030 <artifactId>exec-maven-plugin</artifactId>
1031 <version>1.5.0</version>
1032 <executions>
1033 <execution>
1034 <id>swagger-generate-sources</id>
1035 <phase>generate-sources</phase>
1036 <goals>
1037 <goal>exec</goal>
1038 </goals>
1039 <configuration>
1040 <executable>${project.build.directory}${file.separator}${swagger.sdk.script.file}</executable>
1041 </configuration>
1042 </execution>
1043 </executions>
1044 </plugin>
1045 <plugin>
1046 <groupId>org.apache.maven.plugins</groupId>
1047 <artifactId>maven-clean-plugin</artifactId>
1048 <version>3.0.0</version>
1049 <executions>
1050 <execution>
1051 <id>clean-generated-files</id>
1052 <phase>generate-sources</phase>
1053 <goals>
1054 <goal>clean</goal>
1055 </goals>
1056 <configuration>
1057 <filesets>
1058 <fileset>
1059 <directory>${project.build.directory}/generated-sources</directory>
1060 </fileset>
1061 </filesets>
1062 </configuration>
1063 </execution>
1064 </executions>
1065 </plugin>
1066 </plugins>
1067 </build>
1068 <dependencies>
1069 <dependency>
1070 <groupId>org.onap.msb.swagger-sdk</groupId>
1071 <artifactId>swagger-sdk</artifactId>
1072 <version>1.0.0</version>
1073 </dependency>
1074 </dependencies>
1075 </profile>
Timoney, Dan (dt5972)008b52b2019-12-06 09:10:09 -05001076 <profile>
1077 <id>sonar-jacoco-aggregate</id>
1078 <activation>
1079 <property>
1080 <name>onap.jacoco.aggregateFile</name>
1081 </property>
1082 </activation>
1083 <build>
1084 <plugins>
1085 <plugin>
1086 <groupId>org.jacoco</groupId>
1087 <artifactId>jacoco-maven-plugin</artifactId>
1088 <executions>
1089 <execution>
1090 <id>merge</id>
1091 <goals>
1092 <goal>merge</goal>
1093 </goals>
1094 <phase>generate-resources</phase>
1095 <configuration>
1096 <destFile>${onap.jacoco.aggregateFile}</destFile>
1097 <fileSets>
1098 <fileSet>
1099 <directory>${project.basedir}</directory>
1100 <includes>
1101 <include>**/target/code-coverage/*.exec</include>
1102 </includes>
1103 </fileSet>
1104 </fileSets>
1105 </configuration>
1106 </execution>
1107 </executions>
1108 </plugin>
1109 </plugins>
1110 </build>
1111 </profile>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -05001112 <!-- End of profiles from ONAP oparent -->
Timoney, Dan (dt5972)0586da42019-07-17 10:43:14 -04001113
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -05001114 <profile>
1115 <id>yang-compile</id>
1116 <activation>
1117 <file>
1118 <exists>src/main/yang</exists>
1119 </file>
1120 </activation>
1121 <build>
1122 <plugins>
1123 <plugin>
1124 <groupId>org.opendaylight.yangtools</groupId>
1125 <artifactId>yang-maven-plugin</artifactId>
Michael Dürre2c39a4d2020-07-06 06:22:15 +02001126 <version>3.0.11</version>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -05001127 <dependencies>
1128 <dependency>
1129 <groupId>org.opendaylight.mdsal</groupId>
1130 <artifactId>maven-sal-api-gen-plugin</artifactId>
1131 <version>${odl.mdsal.model.version}</version>
1132 <type>jar</type>
Michael Dürre2c39a4d2020-07-06 06:22:15 +02001133 <scope>compile</scope>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -05001134 </dependency>
1135 <dependency>
1136 <groupId>org.opendaylight.netconf</groupId>
1137 <artifactId>sal-rest-docgen-maven</artifactId>
1138 <version>${odl.netconf.sal.rest.docgen.version}</version>
1139 <type>jar</type>
1140 </dependency>
1141 </dependencies>
1142 <executions>
1143 <execution>
Singal, Kapil (ks220y)704554f2020-01-20 15:12:43 -05001144 <id>binding</id>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -05001145 <goals>
1146 <goal>generate-sources</goal>
1147 </goals>
1148 <configuration>
1149 <yangFilesRootDir>${yang.file.directory}</yangFilesRootDir>
1150 <codeGenerators>
1151 <generator>
1152 <codeGeneratorClass>org.opendaylight.mdsal.binding.maven.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
1153 <outputBaseDir>${salGeneratorPath}</outputBaseDir>
1154 </generator>
1155 <generator>
1156 <codeGeneratorClass>org.opendaylight.netconf.sal.rest.doc.maven.StaticDocGenerator</codeGeneratorClass>
1157 <outputBaseDir>target/swagger</outputBaseDir>
1158 </generator>
1159 </codeGenerators>
1160 <inspectDependencies>true</inspectDependencies>
1161 </configuration>
1162 </execution>
1163 </executions>
1164 </plugin>
1165 </plugins>
1166 </build>
1167 </profile>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -05001168 </profiles>
Dan Timoney0f2db3f2018-01-25 16:23:27 -05001169</project>