blob: 96f6dc508846e8bff77cfb0b9fc8644a48a7379f [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.mdsal</groupId>
10 <artifactId>binding-parent</artifactId>
Michael Dürre2c39a4d2020-07-06 06:22:15 +020011 <version>4.0.14</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>binding-parent</artifactId>
Dan Timoney8c76c982020-03-04 11:02:01 -050017 <version>2.0.0-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>
Dan Timoney2f11eeb2020-05-18 08:39:04 -0400100 <ccsdk.features.version>1.0.0-SNAPSHOT</ccsdk.features.version>
Dan Timoney2fce2f52020-03-24 08:40:37 -0400101 <ccsdk.sli.core.version>1.0.0-SNAPSHOT</ccsdk.sli.core.version>
102 <ccsdk.sli.adaptors.version>1.0.0-SNAPSHOT</ccsdk.sli.adaptors.version>
103 <ccsdk.sli.northbound.version>1.0.0-SNAPSHOT</ccsdk.sli.northbound.version>
104 <ccsdk.sli.plugins.version>1.0.0-SNAPSHOT</ccsdk.sli.plugins.version>
105 <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 Timoney8c76c982020-03-04 11:02:01 -0500195 <version>2.0.0-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>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500554 </plugins>
555 </pluginManagement>
556 <plugins>
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400557
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500558 <!-- Plugins from oparent version (parent of oparent) -->
559 <plugin>
560 <groupId>org.apache.maven.plugins</groupId>
561 <artifactId>maven-deploy-plugin</artifactId>
562 </plugin>
563 <plugin>
564 <groupId>org.apache.maven.plugins</groupId>
565 <artifactId>maven-site-plugin</artifactId>
566 </plugin>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500567 <!-- end of plugins from oparent version (parent of oparent) -->
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400568
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500569 <!-- Plugins from oparent -->
570 <plugin>
571 <artifactId>maven-checkstyle-plugin</artifactId>
572 <version>2.17</version>
573 <dependencies>
574 <dependency>
575 <groupId>org.onap.oparent</groupId>
576 <artifactId>checkstyle</artifactId>
577 <version>1.2.2</version>
578 </dependency>
579 </dependencies>
580 <executions>
581 <execution>
582 <id>onap-license</id>
583 <goals>
584 <goal>check</goal>
585 </goals>
586 <phase>process-sources</phase>
587 <configuration>
588 <configLocation>onap-checkstyle/check-license.xml</configLocation>
589 <includeResources>false</includeResources>
590 <includeTestSourceDirectory>true</includeTestSourceDirectory>
591 <includeTestResources>false</includeTestResources>
592 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
593 <excludes>
594 </excludes>
595 <consoleOutput>true</consoleOutput>
596 <failOnViolation>false</failOnViolation>
597 </configuration>
598 </execution>
599 <execution>
600 <id>onap-java-style</id>
601 <goals>
602 <goal>check</goal>
603 </goals>
604 <phase>process-sources</phase>
605 <configuration>
606 <!-- 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 -0400607 with minor changes -->
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500608 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500609 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500610 <sourceDirectory>${project.build.sourceDirectory}/src/main/java</sourceDirectory>
611 <includeResources>true</includeResources>
612 <includeTestSourceDirectory>true</includeTestSourceDirectory>
613 <includeTestResources>true</includeTestResources>
614 <excludes>
615 </excludes>
616 <consoleOutput>true</consoleOutput>
617 <failOnViolation>false</failOnViolation>
618 </configuration>
619 </execution>
620 </executions>
621 </plugin>
622 <plugin>
623 <groupId>org.codehaus.mojo</groupId>
624 <artifactId>build-helper-maven-plugin</artifactId>
625 <version>1.12</version>
626 </plugin>
627 <!-- Jacoco / Sonar -->
628 <plugin>
629 <groupId>org.jacoco</groupId>
630 <artifactId>jacoco-maven-plugin</artifactId>
Dan Timoney621888e2020-01-17 09:54:02 -0500631 <version>${jacoco.version}</version>
632 <executions>
633 <execution>
634 <id>pre-unit-test</id>
635 <goals>
636 <goal>prepare-agent</goal>
637 </goals>
638 <configuration>
639 <!-- Sets the path to the file which contains the execution data. -->
640 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500641 <!-- Sets the name of the property containing the settings for JaCoCo runtime agent. -->
Dan Timoney621888e2020-01-17 09:54:02 -0500642 <propertyName>surefireArgLine</propertyName>
643 </configuration>
644 </execution>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500645 <!-- Ensures that the code coverage report for unit tests is created after unit tests have been run. -->
Dan Timoney621888e2020-01-17 09:54:02 -0500646 <execution>
647 <id>post-unit-test</id>
648 <phase>test</phase>
649 <goals>
650 <goal>report</goal>
651 </goals>
652 <configuration>
653 <!-- Sets the path to the file which contains the execution data. -->
654 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
655 <!-- Sets the output directory for the code coverage report. -->
656 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
657 </configuration>
658 </execution>
659 <execution>
660 <id>pre-integration-test</id>
661 <phase>pre-integration-test</phase>
662 <goals>
663 <goal>prepare-agent</goal>
664 </goals>
665 <configuration>
666 <!-- Sets the path to the file which contains the execution data. -->
667 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500668 <!-- Sets the name of the property containing the settings for JaCoCo runtime agent. -->
Dan Timoney621888e2020-01-17 09:54:02 -0500669 <propertyName>failsafeArgLine</propertyName>
670 </configuration>
671 </execution>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500672 <!-- Ensures that the code coverage report for integration tests after integration tests have been run. -->
Dan Timoney621888e2020-01-17 09:54:02 -0500673 <execution>
674 <id>post-integration-test</id>
675 <phase>post-integration-test</phase>
676 <goals>
677 <goal>report</goal>
678 </goals>
679 <configuration>
680 <!-- Sets the path to the file which contains the execution data. -->
681 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
682 <!-- Sets the output directory for the code coverage report. -->
683 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
684 </configuration>
685 </execution>
686 <execution>
687 <id>default-prepare-agent</id>
688 <goals>
689 <goal>prepare-agent</goal>
690 </goals>
691 </execution>
692 <execution>
693 <id>default-report</id>
694 <phase>prepare-package</phase>
695 <goals>
696 <goal>report</goal>
697 </goals>
698 </execution>
699 <execution>
700 <id>default-check</id>
701 <goals>
702 <goal>check</goal>
703 </goals>
704 <configuration>
705 <rules>
706 <rule>
707 <element>PACKAGE</element>
708 <limits>
709 <limit>
710 <counter>COMPLEXITY</counter>
711 <value>COVEREDRATIO</value>
712 <minimum>0.0</minimum>
713 </limit>
714 </limits>
715 </rule>
716 </rules>
717 </configuration>
718 </execution>
719 </executions>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500720 </plugin>
721 <plugin>
722 <groupId>org.apache.maven.plugins</groupId>
723 <artifactId>maven-surefire-plugin</artifactId>
724 </plugin>
725 <plugin>
726 <groupId>org.apache.maven.plugins</groupId>
727 <artifactId>maven-failsafe-plugin</artifactId>
728 </plugin>
729 <!-- end of plugins from oparent -->
730 <plugin>
731 <groupId>org.apache.maven.plugins</groupId>
732 <artifactId>maven-javadoc-plugin</artifactId>
733 <version>2.10.4</version>
734 <executions>
735 <execution>
736 <id>attach-javadocs</id>
737 <goals>
738 <goal>jar</goal>
739 </goals>
740 <configuration>
741 <additionalparam>-Xdoclint:none</additionalparam>
742 </configuration>
743 </execution>
744 </executions>
745 </plugin>
Michael Dürre2c39a4d2020-07-06 06:22:15 +0200746 <plugin>
747 <artifactId>maven-enforcer-plugin</artifactId>
748 <version>3.0.0-M2</version>
749 <executions>
750 <execution>
751 <id>enforce-property</id>
752 <goals>
753 <goal>enforce</goal>
754 </goals>
755 <configuration>
756 <rules>
757 <requireProperty>
758 <property>onap.nexus.url</property>
759 <message>You must set a onap.nexus.url property in your
760 ~/.m2/settings.xml. See oparent/settings.xml for an example.</message>
761 </requireProperty>
762 </rules>
763 <fail>true</fail>
764 </configuration>
765 </execution>
766 <execution>
767 <id>enforce-no-snapshots</id>
768 <goals>
769 <goal>enforce</goal>
770 </goals>
771 <configuration>
772 <rules>
773 <requireReleaseDeps>
774 <failWhenParentIsSnapshot>false</failWhenParentIsSnapshot>
775 <onlyWhenRelease>true</onlyWhenRelease>
776 <level>WARN</level>
777 </requireReleaseDeps>
778 </rules>
779 </configuration>
780 </execution>
781 <execution>
782 <id>enforce-maven</id>
783 <goals>
784 <goal>enforce</goal>
785 </goals>
786 <configuration>
787 <rules>
788 <requireJavaVersion>
789 <version>1.8.0</version>
790 </requireJavaVersion>
791 <requireMavenVersion>
792 <version>[3.5.0,)</version>
793 </requireMavenVersion>
794 </rules>
795 </configuration>
796 </execution>
797 <execution>
798 <id>enforce-banned-dependencies</id>
799 <goals>
800 <goal>enforce</goal>
801 </goals>
802 <configuration>
803 <rules>
804 <bannedDependencies>
805 <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>
806 <excludes>
807 <exclude>org.mockito:mockito-all</exclude>
808<!-- <exclude>com.google.code.findbugs:annotations</exclude> -->
809 </excludes>
810 </bannedDependencies>
811 </rules>
812 <fail>true</fail>
813 </configuration>
814 </execution>
815 </executions>
816 </plugin>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500817 </plugins>
818 </build>
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400819
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500820 <reporting>
821 <plugins>
822 <plugin>
823 <artifactId>maven-javadoc-plugin</artifactId>
824 <version>2.10.4</version>
825 <configuration>
826 <failOnError>false</failOnError>
827 <additionalparam>-Xdoclint:none</additionalparam>
828 </configuration>
829 </plugin>
830 </plugins>
831 </reporting>
Singal, Kapil (ks220y)2e8a4da2019-10-01 22:31:50 -0400832
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500833 <profiles>
834 <!-- Profiles from ONAP oparent -->
835 <profile>
836 <id>generate-json</id>
837 <activation>
838 <file>
839 <exists>${swagger-properties}</exists>
840 </file>
841 <property>
842 <name>swagger-sdk.generate-json</name>
843 </property>
844 </activation>
845 <build>
846 <plugins>
847 <plugin>
848 <groupId>org.codehaus.mojo</groupId>
849 <artifactId>properties-maven-plugin</artifactId>
850 <version>1.0.0</version>
851 <executions>
852 <execution>
853 <phase>initialize</phase>
854 <goals>
855 <goal>read-project-properties</goal>
856 </goals>
857 <configuration>
858 <files>
859 <file>${basedir}/src/main/resources/swagger.properties</file>
860 </files>
861 </configuration>
862 </execution>
863 </executions>
864 </plugin>
865 <plugin>
866 <groupId>com.github.kongchen</groupId>
867 <artifactId>swagger-maven-plugin</artifactId>
868 <version>3.1.4</version>
869 <configuration>
870 <apiSources>
871 <apiSource>
872 <locations>${api-rest-package}</locations>
873 <schemes>http,https</schemes>
874 <host>${api-host-ip}:${api-host-port}</host>
875 <basePath>${api-base-path}</basePath>
876 <info>
877 <title>${api-title}</title>
878 <version>${api-version}</version>
879 <description>${api-description}</description>
880 <license>
881 <name>${api-license}</name>
882 </license>
883 </info>
884 <swaggerDirectory>${basedir}/src/main/resources</swaggerDirectory>
885 </apiSource>
886 </apiSources>
887 </configuration>
888 <executions>
889 <execution>
890 <phase>compile</phase>
891 <goals>
892 <goal>generate</goal>
893 </goals>
894 </execution>
895 </executions>
896 </plugin>
897 <plugin>
898 <groupId>org.apache.maven.plugins</groupId>
899 <artifactId>maven-install-plugin</artifactId>
900 <version>2.3.1</version>
901 <executions>
902 <execution>
903 <id>install-file-id</id>
904 <phase>install</phase>
905 <goals>
906 <goal>install-file</goal>
907 </goals>
908 <configuration>
909 <file>${basedir}/src/main/resources/swagger.json</file>
910 <groupId>${project.groupId}</groupId>
911 <artifactId>${project.artifactId}-swagger-schema</artifactId>
912 <version>${project.version}</version>
913 <packaging>json</packaging>
914 </configuration>
915 </execution>
916 </executions>
917 </plugin>
918 </plugins>
919 </build>
920 </profile>
921 <profile>
922 <id>generate-sdk</id>
923 <activation>
924 <file>
925 <exists>${swagger-json}</exists>
926 </file>
927 <property>
928 <name>swagger-sdk.generate-java-sdk</name>
929 </property>
930 </activation>
931 <build>
932 <plugins>
933 <plugin>
934 <groupId>org.apache.maven.plugins</groupId>
935 <artifactId>maven-antrun-plugin</artifactId>
936 <version>1.8</version>
937 <executions>
938 <execution>
939 <phase>initialize</phase>
940 <id>ant-create-script</id>
941 <configuration>
942 <exportAntProperties>true</exportAntProperties>
943 <tasks>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500944 <taskdef resource="net/sf/antcontrib/antlib.xml" classpathref="maven.plugin.classpath"/>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500945 <condition property="is_windows" value="true">
946 <os family="windows"/>
947 </condition>
948 <condition property="isLinux" value="true">
949 <os family="unix"/>
950 </condition>
951 <if>
952 <equals arg1="${is_windows}" arg2="true"/>
953 <then>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500954 <property name="swagger.sdk.script.file" value="generated-source-script.bat"/>
955 <echo file="${project.build.directory}${file.separator}generated-source-script.bat" append="true"
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500956 message="cd ${project.build.directory}${file.separator}generated-sources${line.separator}"/>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500957 <echo file="${project.build.directory}${file.separator}generated-source-script.bat" append="true"
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500958 message="mvn clean install -Dmaven.test.skip=true${line.separator}"/>
959 </then>
960 <else>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500961 <property name="swagger.sdk.script.file" value="generated-source-script.sh"/>
962 <echo file="${project.build.directory}${file.separator}generated-source-script.sh" append="true"
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500963 message="cd ${project.build.directory}${file.separator}generated-sources${line.separator}"/>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500964 <echo file="${project.build.directory}${file.separator}generated-source-script.sh" append="true"
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500965 message="mvn clean install -Dmaven.test.skip=true${line.separator}"/>
Singal, Kapil (ks220y)46751a72020-02-19 17:45:00 -0500966 <chmod file="${project.build.directory}${file.separator}generated-source-script.sh" perm="755"/>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -0500967 </else>
968 </if>
969 </tasks>
970 </configuration>
971 <goals>
972 <goal>run</goal>
973 </goals>
974 </execution>
975 </executions>
976 <dependencies>
977 <dependency>
978 <groupId>ant-contrib</groupId>
979 <artifactId>ant-contrib</artifactId>
980 <version>1.0b3</version>
981 <exclusions>
982 <exclusion>
983 <groupId>ant</groupId>
984 <artifactId>ant</artifactId>
985 </exclusion>
986 </exclusions>
987 </dependency>
988 </dependencies>
989 </plugin>
990 <plugin>
991 <groupId>io.swagger</groupId>
992 <artifactId>swagger-codegen-maven-plugin</artifactId>
993 <version>2.2.1</version>
994 <executions>
995 <execution>
996 <goals>
997 <goal>generate</goal>
998 </goals>
999 <configuration>
1000 <inputSpec>${basedir}/src/main/resources/swagger.json</inputSpec>
1001 <output>${project.build.directory}/generated-sources</output>
1002 <language>java</language>
1003 <configOptions>
1004 <dateLibrary>joda</dateLibrary>
1005 </configOptions>
1006 <library>jersey2</library>
1007 <groupId>${project.groupId}</groupId>
1008 <artifactId>${project.artifactId}-java-sdk</artifactId>
1009 <artifactVersion>${project.version}</artifactVersion>
1010 <modelPackage>${project.groupId}.${project.artifactId}.client.model</modelPackage>
1011 <apiPackage>${project.groupId}.${project.artifactId}.client.api</apiPackage>
1012 <invokerPackage>${project.groupId}.${project.artifactId}.client.invoker</invokerPackage>
1013 </configuration>
1014 </execution>
1015 </executions>
1016 </plugin>
1017 <plugin>
1018 <groupId>org.codehaus.mojo</groupId>
1019 <artifactId>exec-maven-plugin</artifactId>
1020 <version>1.5.0</version>
1021 <executions>
1022 <execution>
1023 <id>swagger-generate-sources</id>
1024 <phase>generate-sources</phase>
1025 <goals>
1026 <goal>exec</goal>
1027 </goals>
1028 <configuration>
1029 <executable>${project.build.directory}${file.separator}${swagger.sdk.script.file}</executable>
1030 </configuration>
1031 </execution>
1032 </executions>
1033 </plugin>
1034 <plugin>
1035 <groupId>org.apache.maven.plugins</groupId>
1036 <artifactId>maven-clean-plugin</artifactId>
1037 <version>3.0.0</version>
1038 <executions>
1039 <execution>
1040 <id>clean-generated-files</id>
1041 <phase>generate-sources</phase>
1042 <goals>
1043 <goal>clean</goal>
1044 </goals>
1045 <configuration>
1046 <filesets>
1047 <fileset>
1048 <directory>${project.build.directory}/generated-sources</directory>
1049 </fileset>
1050 </filesets>
1051 </configuration>
1052 </execution>
1053 </executions>
1054 </plugin>
1055 </plugins>
1056 </build>
1057 <dependencies>
1058 <dependency>
1059 <groupId>org.onap.msb.swagger-sdk</groupId>
1060 <artifactId>swagger-sdk</artifactId>
1061 <version>1.0.0</version>
1062 </dependency>
1063 </dependencies>
1064 </profile>
Timoney, Dan (dt5972)008b52b2019-12-06 09:10:09 -05001065 <profile>
1066 <id>sonar-jacoco-aggregate</id>
1067 <activation>
1068 <property>
1069 <name>onap.jacoco.aggregateFile</name>
1070 </property>
1071 </activation>
1072 <build>
1073 <plugins>
1074 <plugin>
1075 <groupId>org.jacoco</groupId>
1076 <artifactId>jacoco-maven-plugin</artifactId>
1077 <executions>
1078 <execution>
1079 <id>merge</id>
1080 <goals>
1081 <goal>merge</goal>
1082 </goals>
1083 <phase>generate-resources</phase>
1084 <configuration>
1085 <destFile>${onap.jacoco.aggregateFile}</destFile>
1086 <fileSets>
1087 <fileSet>
1088 <directory>${project.basedir}</directory>
1089 <includes>
1090 <include>**/target/code-coverage/*.exec</include>
1091 </includes>
1092 </fileSet>
1093 </fileSets>
1094 </configuration>
1095 </execution>
1096 </executions>
1097 </plugin>
1098 </plugins>
1099 </build>
1100 </profile>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -05001101 <!-- End of profiles from ONAP oparent -->
Timoney, Dan (dt5972)0586da42019-07-17 10:43:14 -04001102
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -05001103 <profile>
1104 <id>yang-compile</id>
1105 <activation>
1106 <file>
1107 <exists>src/main/yang</exists>
1108 </file>
1109 </activation>
1110 <build>
1111 <plugins>
1112 <plugin>
1113 <groupId>org.opendaylight.yangtools</groupId>
1114 <artifactId>yang-maven-plugin</artifactId>
Michael Dürre2c39a4d2020-07-06 06:22:15 +02001115 <version>3.0.11</version>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -05001116 <dependencies>
1117 <dependency>
1118 <groupId>org.opendaylight.mdsal</groupId>
1119 <artifactId>maven-sal-api-gen-plugin</artifactId>
1120 <version>${odl.mdsal.model.version}</version>
1121 <type>jar</type>
Michael Dürre2c39a4d2020-07-06 06:22:15 +02001122 <scope>compile</scope>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -05001123 </dependency>
1124 <dependency>
1125 <groupId>org.opendaylight.netconf</groupId>
1126 <artifactId>sal-rest-docgen-maven</artifactId>
1127 <version>${odl.netconf.sal.rest.docgen.version}</version>
1128 <type>jar</type>
1129 </dependency>
1130 </dependencies>
1131 <executions>
1132 <execution>
Singal, Kapil (ks220y)704554f2020-01-20 15:12:43 -05001133 <id>binding</id>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -05001134 <goals>
1135 <goal>generate-sources</goal>
1136 </goals>
1137 <configuration>
1138 <yangFilesRootDir>${yang.file.directory}</yangFilesRootDir>
1139 <codeGenerators>
1140 <generator>
1141 <codeGeneratorClass>org.opendaylight.mdsal.binding.maven.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
1142 <outputBaseDir>${salGeneratorPath}</outputBaseDir>
1143 </generator>
1144 <generator>
1145 <codeGeneratorClass>org.opendaylight.netconf.sal.rest.doc.maven.StaticDocGenerator</codeGeneratorClass>
1146 <outputBaseDir>target/swagger</outputBaseDir>
1147 </generator>
1148 </codeGenerators>
1149 <inspectDependencies>true</inspectDependencies>
1150 </configuration>
1151 </execution>
1152 </executions>
1153 </plugin>
1154 </plugins>
1155 </build>
1156 </profile>
Singal, Kapil (ks220y)f15762d2019-12-03 10:48:17 -05001157 </profiles>
Dan Timoney0f2db3f2018-01-25 16:23:27 -05001158</project>