Michal Jagiello | 8ac3e42 | 2020-05-28 10:49:20 +0000 | [diff] [blame] | 1 | <?xml version="1.0" ?> |
MukeshKumar | 1d9546b | 2020-08-11 09:55:46 +0100 | [diff] [blame] | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | <parent> |
| 6 | <groupId>org.onap.oparent</groupId> |
| 7 | <artifactId>oparent</artifactId> |
kiran mhetre | dd528de | 2023-03-29 10:40:39 +0000 | [diff] [blame] | 8 | <version>3.0.2</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 9 | <relativePath /> |
| 10 | </parent> |
| 11 | <groupId>org.onap.so</groupId> |
| 12 | <artifactId>so</artifactId> |
| 13 | <packaging>pom</packaging> |
Lukasz Rajewski | 6f1ea87 | 2023-06-12 14:35:34 +0000 | [diff] [blame^] | 14 | <version>1.13.0-SNAPSHOT</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 15 | <name>so</name> |
| 16 | <description>This Maven project is responsible to build and package all child projects - contributions in the MSO project. |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 17 | This build can be configured to run Functional tests and to start/stop a jboss server + Mysql DB. |
| 18 | "mvn clean install -P with-integration-tests -Dintegration-tests-user=root -Dintegration-tests-group=root -Dintegration-tests-db-type=MYSQL" |
| 19 | </description> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 20 | <organization> |
| 21 | <name>ONAP - SO</name> |
| 22 | <url>http://www.onap.org/</url> |
zm330 | d05adce | 2020-05-14 11:36:14 +0800 | [diff] [blame] | 23 | </organization> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 24 | <modules> |
| 25 | <module>deployment-configs</module> |
| 26 | <module>common</module> |
Benjamin, Max | 4f774ee | 2020-04-28 15:13:12 -0400 | [diff] [blame] | 27 | <module>graph-inventory</module> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 28 | <module>mso-catalog-db</module> |
| 29 | <module>mso-api-handlers</module> |
| 30 | <module>adapters</module> |
| 31 | <module>asdc-controller</module> |
Boslet, Cory | b7c956f | 2020-07-06 09:58:17 -0400 | [diff] [blame] | 32 | <module>so-optimization-clients</module> |
Boslet, Cory | da36637 | 2020-07-07 11:46:43 -0400 | [diff] [blame] | 33 | <module>so-sdn-clients</module> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 34 | <module>bpmn</module> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 35 | <module>cxf-logging</module> |
Mnushkin, Dmitry | 6514e3b | 2019-10-21 09:25:56 -0400 | [diff] [blame] | 36 | <module>so-simulator</module> |
Remigiusz Janeczek | b02ea7d | 2020-02-17 10:17:11 +0100 | [diff] [blame] | 37 | <module>packages</module> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 38 | </modules> |
| 39 | <properties> |
| 40 | <project.mso.base.folder>.</project.mso.base.folder> |
| 41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 42 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 43 | <sonar.language>java</sonar.language> |
arun chapagain | 258be88 | 2020-08-06 15:44:12 +0530 | [diff] [blame] | 44 | <java.version>11</java.version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 45 | <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin> |
| 46 | <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath> |
Priyadharshini | 6bafbf4 | 2020-02-18 10:52:20 +0000 | [diff] [blame] | 47 | <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 48 | <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero> |
| 49 | <sonar.projectVersion>${project.version}</sonar.projectVersion> |
| 50 | <sonar.cpd.exclusions>**/*</sonar.cpd.exclusions> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 51 | <org.apache.maven.user-settings /> |
Lukasz Rajewski | 22f844c | 2023-04-04 20:16:35 +0000 | [diff] [blame] | 52 | <openstack.version>1.12.0</openstack.version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 53 | <maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format> |
| 54 | <originalClassifier>original</originalClassifier> |
| 55 | <docker.skip>true</docker.skip> |
| 56 | <docker.skip.build>true</docker.skip.build> |
| 57 | <docker.skip.push>true</docker.skip.push> |
| 58 | <docker.buildArg.project_version>${project.version}</docker.buildArg.project_version> |
| 59 | <docker.buildArg.artifact_id>${project.artifactId}</docker.buildArg.artifact_id> |
| 60 | <docker.buildArg.docker_repository>${dockerPullRepo}</docker.buildArg.docker_repository> |
Benjamin, Max | 7d6464b | 2020-01-10 10:16:16 -0500 | [diff] [blame] | 61 | <enforcer.skip>false</enforcer.skip> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 62 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
| 63 | <releaseNexusPath>content/repositories/releases/</releaseNexusPath> |
| 64 | <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath> |
| 65 | <publicNexusPath>content/repositories/public/</publicNexusPath> |
| 66 | <siteNexusPath>content/sites/site/org/onap/so/${project.version}/</siteNexusPath> |
Benjamin, Max (mb388a) | d5968f5 | 2021-02-05 20:34:11 -0500 | [diff] [blame] | 67 | <cxf.version>3.4.1</cxf.version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 68 | <jax.ws.rs>2.1</jax.ws.rs> |
Benjamin, Max (mb388a) | d5968f5 | 2021-02-05 20:34:11 -0500 | [diff] [blame] | 69 | <springboot.version>2.3.7.RELEASE</springboot.version> |
Benjamin, Max (mb388a) | 4209b11 | 2021-01-13 12:37:09 -0500 | [diff] [blame] | 70 | <aaf.version>2.1.21</aaf.version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 71 | <format.skipValidate>false</format.skipValidate> |
| 72 | <format.skipExecute>true</format.skipExecute> |
Benjamin, Max | 5f57d09 | 2020-05-13 17:48:03 -0400 | [diff] [blame] | 73 | <io.fabric8.version>0.33.0</io.fabric8.version> |
arun chapagain | 7ac8b94 | 2020-08-10 15:28:02 +0530 | [diff] [blame] | 74 | <appc.client.version>1.7.2</appc.client.version> |
Benjamin, Max (mb388a) | d5968f5 | 2021-02-05 20:34:11 -0500 | [diff] [blame] | 75 | <bowman.client.version>0.9.0</bowman.client.version> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 76 | <aaf.cadi.version>2.1.15</aaf.cadi.version> |
MukeshKumar | b71c2de | 2021-08-10 15:57:54 +0100 | [diff] [blame] | 77 | <so-etsi-sol003-adapter-version>1.9.0-SNAPSHOT</so-etsi-sol003-adapter-version> |
waqas.ikram | abfaee8 | 2021-06-16 16:54:04 +0100 | [diff] [blame] | 78 | <onap-logging-version>1.6.9</onap-logging-version> |
Lukasz Rajewski | 22f844c | 2023-04-04 20:16:35 +0000 | [diff] [blame] | 79 | <jackson.version>2.14.2</jackson.version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 80 | </properties> |
| 81 | <distributionManagement> |
| 82 | <repository> |
MukeshKumar | 3ece67e | 2021-06-22 12:46:29 +0100 | [diff] [blame] | 83 | <id>ecomp-releases</id> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 84 | <url>${nexusproxy}/${releaseNexusPath}</url> |
| 85 | </repository> |
| 86 | <snapshotRepository> |
MukeshKumar | 3ece67e | 2021-06-22 12:46:29 +0100 | [diff] [blame] | 87 | <id>ecomp-snapshots</id> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 88 | <url>${nexusproxy}/${snapshotNexusPath}</url> |
| 89 | </snapshotRepository> |
| 90 | <site> |
MukeshKumar | 3ece67e | 2021-06-22 12:46:29 +0100 | [diff] [blame] | 91 | <id>ecomp-site</id> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 92 | <url>dav:${nexusproxy}${siteNexusPath}</url> |
| 93 | </site> |
| 94 | </distributionManagement> |
| 95 | <reporting> |
| 96 | <plugins> |
| 97 | <plugin> |
| 98 | <groupId>org.apache.maven.plugins</groupId> |
| 99 | <artifactId>maven-javadoc-plugin</artifactId> |
| 100 | <version>2.10.4</version> |
| 101 | <configuration> |
| 102 | <failOnError>false</failOnError> |
| 103 | <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> |
| 104 | <docletArtifact> |
| 105 | <groupId>org.umlgraph</groupId> |
| 106 | <artifactId>umlgraph</artifactId> |
| 107 | <version>5.6</version> |
| 108 | </docletArtifact> |
| 109 | <additionalparam>-views</additionalparam> |
| 110 | <useStandardDocletOptions>true</useStandardDocletOptions> |
| 111 | </configuration> |
| 112 | </plugin> |
| 113 | </plugins> |
| 114 | </reporting> |
| 115 | <!-- configure build --> |
| 116 | <!-- *********************************************************************************************************** --> |
| 117 | <!-- Plugins and repositories --> |
| 118 | <pluginRepositories> |
| 119 | <pluginRepository> |
| 120 | <id>central</id> |
| 121 | <url>http://repo1.maven.org/maven2</url> |
| 122 | </pluginRepository> |
| 123 | <pluginRepository> |
| 124 | <id>restlet</id> |
| 125 | <url>http://maven.restlet.com</url> |
| 126 | </pluginRepository> |
| 127 | <pluginRepository> |
Benjamin, Max | ff29674 | 2021-02-18 15:56:17 -0500 | [diff] [blame] | 128 | <id>onap-public</id> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 129 | <url>${nexusproxy}/${publicNexusPath}</url> |
| 130 | <snapshots> |
| 131 | <enabled>false</enabled> |
| 132 | </snapshots> |
| 133 | </pluginRepository> |
| 134 | <pluginRepository> |
MukeshKumar | 3ece67e | 2021-06-22 12:46:29 +0100 | [diff] [blame] | 135 | <id>ecomp-release</id> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 136 | <url>${nexusproxy}/${releaseNexusPath}</url> |
| 137 | <snapshots> |
| 138 | <enabled>false</enabled> |
| 139 | </snapshots> |
| 140 | </pluginRepository> |
| 141 | <pluginRepository> |
MukeshKumar | 3ece67e | 2021-06-22 12:46:29 +0100 | [diff] [blame] | 142 | <id>ecomp-snapshots</id> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 143 | <url>${nexusproxy}/${snapshotNexusPath}</url> |
| 144 | <releases> |
| 145 | <enabled>false</enabled> |
| 146 | </releases> |
| 147 | </pluginRepository> |
| 148 | </pluginRepositories> |
| 149 | <repositories> |
| 150 | <repository> |
MukeshKumar | 3ece67e | 2021-06-22 12:46:29 +0100 | [diff] [blame] | 151 | <id>ecomp-public</id> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 152 | <url>https://nexus.onap.org/content/repositories/public/</url> |
| 153 | <snapshots> |
| 154 | <enabled>false</enabled> |
| 155 | </snapshots> |
| 156 | </repository> |
| 157 | <repository> |
MukeshKumar | 3ece67e | 2021-06-22 12:46:29 +0100 | [diff] [blame] | 158 | <id>ecomp-releases</id> |
| 159 | <url>https://nexus.onap.org/content/repositories/releases/</url> |
| 160 | <snapshots> |
| 161 | <enabled>false</enabled> |
| 162 | </snapshots> |
| 163 | </repository> |
| 164 | <repository> |
| 165 | <id>ecomp-snapshots</id> |
| 166 | <url>https://nexus.onap.org/content/repositories/snapshots/</url> |
| 167 | <snapshots> |
| 168 | <enabled>false</enabled> |
| 169 | </snapshots> |
| 170 | </repository> |
| 171 | <repository> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 172 | <id>camunda-bpm</id> |
| 173 | <url>https://app.camunda.com/nexus/content/repositories/camunda-bpm/</url> |
| 174 | </repository> |
| 175 | <repository> |
| 176 | <id>camunda-public</id> |
| 177 | <url>https://app.camunda.com/nexus/content/groups/public</url> |
| 178 | </repository> |
| 179 | <repository> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 180 | <id>onap-releases</id> |
| 181 | <url>https://nexus.onap.org/content/repositories/releases/</url> |
| 182 | <snapshots> |
| 183 | <enabled>false</enabled> |
| 184 | </snapshots> |
| 185 | </repository> |
| 186 | <repository> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 187 | <id>onap-snapshots</id> |
| 188 | <url>https://nexus.onap.org/content/repositories/snapshots/</url> |
| 189 | <releases> |
| 190 | <enabled>false</enabled> |
| 191 | </releases> |
| 192 | </repository> |
| 193 | </repositories> |
| 194 | <!-- *********************************************************************************************************** --> |
| 195 | <!-- Build --> |
| 196 | <build> |
| 197 | <resources> |
| 198 | <resource> |
| 199 | <directory>src/main/resources</directory> |
| 200 | <filtering>true</filtering> |
| 201 | </resource> |
| 202 | <resource> |
| 203 | <directory>target/generated-sources/license</directory> |
| 204 | <includes> |
| 205 | <include>third-party-licenses.txt</include> |
| 206 | </includes> |
| 207 | </resource> |
| 208 | <resource> |
| 209 | <directory>target/generated-resources/licenses</directory> |
| 210 | <includes> |
| 211 | <include>*.*</include> |
| 212 | </includes> |
| 213 | <targetPath>third-party-licenses</targetPath> |
| 214 | </resource> |
| 215 | </resources> |
| 216 | <plugins> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 217 | <plugin> |
| 218 | <groupId>org.apache.maven.plugins</groupId> |
| 219 | <artifactId>maven-deploy-plugin</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 220 | <!-- This version supports the "deployAtEnd" parameter --> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 221 | <configuration> |
| 222 | <skip /> |
| 223 | </configuration> |
| 224 | </plugin> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 225 | <plugin> |
| 226 | <groupId>org.apache.maven.plugins</groupId> |
| 227 | <artifactId>maven-compiler-plugin</artifactId> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 228 | <version>3.8.0</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 229 | <configuration> |
| 230 | <debug>true</debug> |
| 231 | <compilerArgument>-Xlint</compilerArgument> |
| 232 | <verbose>true</verbose> |
| 233 | <showDeprecation>true</showDeprecation> |
| 234 | <showWarnings>true</showWarnings> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 235 | <compilerArgs> |
| 236 | <arg>-parameters</arg> |
| 237 | </compilerArgs> |
Benjamin, Max | a5de2db | 2020-08-07 11:36:18 -0400 | [diff] [blame] | 238 | <forceJavacCompilerUse>true</forceJavacCompilerUse> |
| 239 | <source>11</source> |
| 240 | <target>11</target> |
| 241 | <release>11</release> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 242 | </configuration> |
| 243 | </plugin> |
| 244 | <plugin> |
| 245 | <groupId>org.apache.maven.plugins</groupId> |
| 246 | <artifactId>maven-ejb-plugin</artifactId> |
| 247 | <version>2.2.1</version> |
| 248 | <configuration> |
| 249 | <ejbVersion>3.0</ejbVersion> |
| 250 | <archive> |
| 251 | <manifest> |
| 252 | <addClasspath>true</addClasspath> |
| 253 | </manifest> |
| 254 | </archive> |
| 255 | </configuration> |
| 256 | </plugin> |
| 257 | <plugin> |
| 258 | <groupId>org.apache.maven.plugins</groupId> |
| 259 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 260 | <version>2.17</version> |
| 261 | <configuration> |
| 262 | <skip>true</skip> |
| 263 | <includes>**/org/openecomp/**/*.java</includes> |
| 264 | <configLocation>/google_checks.xml</configLocation> |
| 265 | </configuration> |
| 266 | </plugin> |
| 267 | <plugin> |
| 268 | <groupId>org.codehaus.mojo</groupId> |
| 269 | <artifactId>findbugs-maven-plugin</artifactId> |
| 270 | <version>2.5.2</version> |
| 271 | <configuration> |
| 272 | <includeFilterFile>project-configs/code-tools/findbugs_include_filter.xml</includeFilterFile> |
| 273 | <nested>true</nested> |
| 274 | <findbugsXmlOutput>true</findbugsXmlOutput> |
| 275 | <findbugsXmlWithMessages>true</findbugsXmlWithMessages> |
| 276 | <xmlOutput>true</xmlOutput> |
| 277 | </configuration> |
| 278 | </plugin> |
| 279 | <plugin> |
| 280 | <groupId>org.codehaus.mojo</groupId> |
| 281 | <artifactId>sonar-maven-plugin</artifactId> |
| 282 | <version>5.1</version> |
| 283 | </plugin> |
| 284 | <plugin> |
| 285 | <artifactId>maven-scm-plugin</artifactId> |
| 286 | <version>1.8.1</version> |
| 287 | <configuration> |
| 288 | <tag>${project.artifactId}-${project.version}</tag> |
| 289 | </configuration> |
| 290 | </plugin> |
| 291 | <plugin> |
| 292 | <groupId>org.apache.maven.plugins</groupId> |
| 293 | <artifactId>maven-javadoc-plugin</artifactId> |
| 294 | <version>2.9</version> |
| 295 | </plugin> |
| 296 | <plugin> |
| 297 | <groupId>org.apache.maven.plugins</groupId> |
| 298 | <artifactId>maven-site-plugin</artifactId> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 299 | <dependencies> |
| 300 | <dependency> |
| 301 | <groupId>org.apache.maven.wagon</groupId> |
| 302 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 303 | <version>2.10</version> |
| 304 | </dependency> |
| 305 | </dependencies> |
| 306 | </plugin> |
| 307 | <plugin> |
| 308 | <groupId>org.codehaus.mojo</groupId> |
| 309 | <artifactId>cobertura-maven-plugin</artifactId> |
| 310 | <version>2.5.2</version> |
| 311 | <configuration> |
| 312 | <formats> |
| 313 | <format>xml</format> |
| 314 | </formats> |
| 315 | </configuration> |
| 316 | </plugin> |
| 317 | <plugin> |
| 318 | <groupId>org.codehaus.mojo</groupId> |
| 319 | <artifactId>versions-maven-plugin</artifactId> |
| 320 | <version>1.3.1</version> |
| 321 | </plugin> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 322 | |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 323 | <plugin> |
| 324 | <groupId>com.fortify.ps.maven.plugin</groupId> |
| 325 | <artifactId>sca-maven-plugin</artifactId> |
| 326 | <version>4.20</version> |
| 327 | <configuration> |
| 328 | <buildId>mso-${project.version}</buildId> |
arun chapagain | 258be88 | 2020-08-06 15:44:12 +0530 | [diff] [blame] | 329 | <source>${java.version}</source> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 330 | </configuration> |
| 331 | </plugin> |
| 332 | <plugin> |
tragait | 1ae4a56 | 2019-10-21 14:26:08 -0400 | [diff] [blame] | 333 | <groupId>org.jacoco</groupId> |
| 334 | <artifactId>jacoco-maven-plugin</artifactId> |
tragait | 1ae4a56 | 2019-10-21 14:26:08 -0400 | [diff] [blame] | 335 | <executions> |
| 336 | <execution> |
| 337 | <id>prepare-agent</id> |
| 338 | <goals> |
| 339 | <goal>prepare-agent</goal> |
| 340 | </goals> |
| 341 | </execution> |
| 342 | <execution> |
| 343 | <id>report</id> |
| 344 | <goals> |
| 345 | <goal>report</goal> |
| 346 | </goals> |
| 347 | <configuration> |
| 348 | <dataFile>${project.build.directory}/code-coverage/jacoco.exec</dataFile> |
| 349 | <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory> |
| 350 | </configuration> |
| 351 | </execution> |
| 352 | </executions> |
| 353 | </plugin> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 354 | <plugin> |
| 355 | <groupId>org.codehaus.mojo</groupId> |
| 356 | <artifactId>license-maven-plugin</artifactId> |
| 357 | <version>1.15</version> |
| 358 | <configuration> |
| 359 | <inceptionYear>2017</inceptionYear> |
| 360 | <projectName>ONAP - SO</projectName> |
| 361 | <licenseName>apache_v2</licenseName> |
| 362 | <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage> |
| 363 | <emptyLineAfterHeader>true</emptyLineAfterHeader> |
| 364 | <trimHeaderLine>true</trimHeaderLine> |
| 365 | <processStartTag>============LICENSE_START=======================================================</processStartTag> |
| 366 | <sectionDelimiter>================================================================================</sectionDelimiter> |
| 367 | <processEndTag>============LICENSE_END=========================================================</processEndTag> |
| 368 | <includes> |
| 369 | <include>**/*.java</include> |
| 370 | <include>**/*.groovy</include> |
| 371 | </includes> |
| 372 | <excludes> |
| 373 | <exclude>**/com/att/**</exclude> |
| 374 | </excludes> |
| 375 | </configuration> |
| 376 | <executions> |
| 377 | <execution> |
| 378 | <id>verify-headers</id> |
| 379 | <goals> |
| 380 | <goal>check-file-header</goal> |
| 381 | </goals> |
| 382 | <configuration> |
| 383 | <failOnNotUptodateHeader>true</failOnNotUptodateHeader> |
| 384 | <failOnMissingHeader>true</failOnMissingHeader> |
| 385 | </configuration> |
| 386 | </execution> |
| 387 | </executions> |
| 388 | </plugin> |
| 389 | <plugin> |
| 390 | <groupId>org.codehaus.gmaven</groupId> |
| 391 | <artifactId>groovy-maven-plugin</artifactId> |
| 392 | <version>2.0</version> |
| 393 | <executions> |
| 394 | <!-- set absolute base path from super pom --> |
| 395 | <execution> |
| 396 | <id>find-basepath</id> |
| 397 | <phase>validate</phase> |
| 398 | <goals> |
| 399 | <goal>execute</goal> |
| 400 | </goals> |
| 401 | <configuration> |
| 402 | <source> |
| 403 | <![CDATA[ |
| 404 | import java.io.File; |
| 405 | log.info('## define projects super pom absolute path through basepath_marker') |
| 406 | String p = "basepath_marker"; |
| 407 | File f = null; |
| 408 | if( p != null ) { |
| 409 | def _max_child_poms = 0 |
| 410 | while( _max_child_poms++ < 5 ) { |
| 411 | f = new File( p ); |
| 412 | if( f.exists() ) { |
| 413 | break; |
| 414 | } |
| 415 | p = "../" + p; |
| 416 | } |
| 417 | } |
| 418 | if( f != null ) { |
| 419 | String basePath = f.getCanonicalPath(); |
| 420 | basePath = basePath.substring( 0, basePath.lastIndexOf( File.separator ) ); |
| 421 | project.properties['base-path'] = basePath.replace( '\\' , '/'); |
| 422 | log.info(' - used base path = ' + project.properties['base-path'] ); |
| 423 | } else { |
| 424 | log.error( 'Could not find basepath_marker marker file!' ); |
| 425 | System.stop( 0 ); |
| 426 | } |
| 427 | ]]> |
| 428 | </source> |
| 429 | </configuration> |
| 430 | </execution> |
| 431 | </executions> |
| 432 | </plugin> |
| 433 | <plugin> |
| 434 | <groupId>net.revelc.code.formatter</groupId> |
| 435 | <artifactId>formatter-maven-plugin</artifactId> |
| 436 | <version>2.9.0</version> |
| 437 | <executions> |
| 438 | <execution> |
| 439 | <id>format-java</id> |
| 440 | <goals> |
| 441 | <goal>format</goal> |
| 442 | </goals> |
subhash kumar singh | f875061 | 2019-04-19 12:24:00 +0530 | [diff] [blame] | 443 | <phase>process-sources</phase> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 444 | <configuration> |
| 445 | <skip>${format.skipExecute}</skip> |
| 446 | <configFile>${base-path}/project-configs/code-tools/onap-eclipse-format.xml</configFile> |
| 447 | </configuration> |
| 448 | </execution> |
| 449 | <execution> |
| 450 | <id>format-xml</id> |
| 451 | <goals> |
| 452 | <goal>format</goal> |
| 453 | </goals> |
subhash kumar singh | f875061 | 2019-04-19 12:24:00 +0530 | [diff] [blame] | 454 | <phase>process-sources</phase> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 455 | <configuration> |
| 456 | <skip>${format.skipExecute}</skip> |
| 457 | <sourceDirectory>${project.basedir}</sourceDirectory> |
| 458 | <configXmlFile>${base-path}/project-configs/code-tools/pom-format.properties</configXmlFile> |
| 459 | <includes> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 460 | <include>pom.xml</include> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 461 | </includes> |
| 462 | </configuration> |
| 463 | </execution> |
| 464 | <execution> |
| 465 | <id>validate-java</id> |
| 466 | <goals> |
| 467 | <goal>validate</goal> |
| 468 | </goals> |
| 469 | <configuration> |
| 470 | <skip>${format.skipValidate}</skip> |
| 471 | <configFile>${base-path}/project-configs/code-tools/onap-eclipse-format.xml</configFile> |
| 472 | </configuration> |
| 473 | </execution> |
| 474 | <execution> |
| 475 | <id>validate-poms</id> |
| 476 | <goals> |
| 477 | <goal>validate</goal> |
| 478 | </goals> |
| 479 | <configuration> |
| 480 | <skip>${format.skipValidate}</skip> |
| 481 | <configFile>${base-path}/project-configs/code-tools/pom-format.properties</configFile> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 482 | <includes> |
| 483 | <include>pom.xml</include> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 484 | </includes> |
| 485 | </configuration> |
| 486 | </execution> |
| 487 | </executions> |
| 488 | <dependencies> |
| 489 | <dependency> |
| 490 | <groupId>com.fasterxml.jackson.core</groupId> |
| 491 | <artifactId>jackson-annotations</artifactId> |
Lukasz Rajewski | 22f844c | 2023-04-04 20:16:35 +0000 | [diff] [blame] | 492 | <version>2.14.2</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 493 | </dependency> |
| 494 | </dependencies> |
| 495 | </plugin> |
Benjamin, Max | 7d6464b | 2020-01-10 10:16:16 -0500 | [diff] [blame] | 496 | <plugin> |
| 497 | <groupId>org.apache.maven.plugins</groupId> |
| 498 | <artifactId>maven-enforcer-plugin</artifactId> |
| 499 | <version>3.0.0-M3</version> |
| 500 | <executions> |
| 501 | <execution> |
kjaniak | 48fbeba | 2019-12-19 13:08:05 +0100 | [diff] [blame] | 502 | <id>enforce-property</id> |
| 503 | <configuration> |
| 504 | <skip>true</skip> |
| 505 | </configuration> |
Benjamin, Max | 7d6464b | 2020-01-10 10:16:16 -0500 | [diff] [blame] | 506 | </execution> |
| 507 | <execution> |
kjaniak | 48fbeba | 2019-12-19 13:08:05 +0100 | [diff] [blame] | 508 | <id>enforce-no-snapshots</id> |
| 509 | <configuration> |
| 510 | <skip>true</skip> |
| 511 | </configuration> |
Benjamin, Max | 7d6464b | 2020-01-10 10:16:16 -0500 | [diff] [blame] | 512 | </execution> |
| 513 | <execution> |
| 514 | <id>enforce-banned-dependencies</id> |
| 515 | <goals> |
| 516 | <goal>enforce</goal> |
| 517 | </goals> |
| 518 | <configuration> |
| 519 | <rules> |
| 520 | <bannedDependencies> |
| 521 | <excludes> |
| 522 | <exclude>org.powermock</exclude> |
| 523 | </excludes> |
| 524 | <searchTransitive>false</searchTransitive> |
| 525 | </bannedDependencies> |
| 526 | </rules> |
| 527 | <fail>true</fail> |
| 528 | </configuration> |
| 529 | </execution> |
| 530 | </executions> |
| 531 | </plugin> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 532 | </plugins> |
| 533 | <pluginManagement> |
| 534 | <plugins> |
Benjamin, Max | 71d87a3 | 2020-06-24 10:44:53 -0400 | [diff] [blame] | 535 | <plugin> |
Boslet, Cory | f5c3da8 | 2020-05-20 11:39:21 -0400 | [diff] [blame] | 536 | <groupId>org.eclipse.m2e</groupId> |
| 537 | <artifactId>lifecycle-mapping</artifactId> |
| 538 | <version>1.0.0</version> |
| 539 | <configuration> |
| 540 | <lifecycleMappingMetadata> |
| 541 | <pluginExecutions> |
| 542 | <pluginExecution> |
| 543 | <pluginExecutionFilter> |
| 544 | <groupId>org.apache.maven.plugins</groupId> |
| 545 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 546 | <versionRange>[1.0.0,)</versionRange> |
| 547 | <goals> |
| 548 | <goal>check</goal> |
| 549 | </goals> |
| 550 | </pluginExecutionFilter> |
| 551 | <action> |
| 552 | <execute /> |
| 553 | </action> |
| 554 | </pluginExecution> |
Benjamin, Max | 71d87a3 | 2020-06-24 10:44:53 -0400 | [diff] [blame] | 555 | <pluginExecution> |
Boslet, Cory | f5c3da8 | 2020-05-20 11:39:21 -0400 | [diff] [blame] | 556 | <pluginExecutionFilter> |
| 557 | <groupId>org.codehaus.gmaven</groupId> |
| 558 | <artifactId>groovy-maven-plugin</artifactId> |
| 559 | <versionRange>[1.0.0,)</versionRange> |
| 560 | <goals> |
| 561 | <goal>execute</goal> |
| 562 | </goals> |
| 563 | </pluginExecutionFilter> |
| 564 | <action> |
| 565 | <execute /> |
| 566 | </action> |
| 567 | </pluginExecution> |
| 568 | </pluginExecutions> |
| 569 | </lifecycleMappingMetadata> |
| 570 | </configuration> |
| 571 | </plugin> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 572 | <plugin> |
| 573 | <groupId>io.fabric8</groupId> |
Benjamin, Max | 5f57d09 | 2020-05-13 17:48:03 -0400 | [diff] [blame] | 574 | <artifactId>docker-maven-plugin</artifactId> |
Benjamin, Max (mb388a) | 1a592b9 | 2019-06-17 10:51:08 -0400 | [diff] [blame] | 575 | <version>${io.fabric8.version}</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 576 | <configuration> |
| 577 | <skip>${docker.skip}</skip> |
| 578 | <skipBuild>${docker.skip.build}</skipBuild> |
| 579 | <skipPush>${docker.skip.push}</skipPush> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 580 | <dockerHost>${docker.newHost}</dockerHost> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 581 | <!-- 1. Update address to your local docker VM. 2. Add IP to |
| 582 | your NO_PROXY environment variable --> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 583 | <certPath>${docker.host.cert.path}</certPath> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 584 | <!-- Add -Ddocker.host.cert.pat="path to your local certs directory" |
| 585 | to maven build command --> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 586 | <pushRegistry>${dockerPushRepo}</pushRegistry> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 587 | <!-- Update .m2/settings.xml Add server id settings.dockerRepository, |
| 588 | username, and password --> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 589 | <pullRegistry>${dockerPullRepo}</pullRegistry> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 590 | <!-- If docker repo is not public. Update .m2/settings.xml Add |
| 591 | server id settings.dockerRepository, username, and password --> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 592 | <images> |
| 593 | <image> |
| 594 | <alias>service</alias> |
waqas.ikram | 12bfb7b | 2020-04-08 15:48:21 +0100 | [diff] [blame] | 595 | <name>${project.artifactId}:${project.version}</name> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 596 | <build> |
| 597 | <dockerFileDir>${project.build.directory}</dockerFileDir> |
| 598 | </build> |
| 599 | </image> |
| 600 | </images> |
| 601 | </configuration> |
| 602 | <executions> |
| 603 | <execution> |
| 604 | <id>start</id> |
| 605 | <goals> |
| 606 | <goal>build</goal> |
| 607 | <goal>push</goal> |
| 608 | </goals> |
| 609 | </execution> |
| 610 | </executions> |
| 611 | </plugin> |
| 612 | <plugin> |
| 613 | <groupId>org.apache.maven.plugins</groupId> |
| 614 | <artifactId>maven-surefire-plugin</artifactId> |
kiran mhetre | dd528de | 2023-03-29 10:40:39 +0000 | [diff] [blame] | 615 | <version>3.0.0-M9</version> |
| 616 | <dependencies> |
| 617 | <dependency> |
| 618 | <groupId>org.junit.jupiter</groupId> |
| 619 | <artifactId>junit-jupiter-engine</artifactId> |
| 620 | <version>5.5.2</version> |
| 621 | </dependency> |
| 622 | </dependencies> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 623 | <configuration> |
| 624 | <systemPropertyVariables> |
| 625 | <so.log.level>DEBUG</so.log.level> |
| 626 | </systemPropertyVariables> |
| 627 | <rerunFailingTestsCount>2</rerunFailingTestsCount> |
| 628 | <parallel>classes</parallel> |
| 629 | <useUnlimitedThreads>false</useUnlimitedThreads> |
| 630 | <threadCount>1</threadCount> |
| 631 | </configuration> |
| 632 | </plugin> |
| 633 | <plugin> |
| 634 | <groupId>org.apache.maven.plugins</groupId> |
| 635 | <artifactId>maven-failsafe-plugin</artifactId> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 636 | <version>2.22.2</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 637 | <configuration> |
| 638 | <skip>true</skip> |
| 639 | <systemPropertyVariables> |
| 640 | <so.log.level>DEBUG</so.log.level> |
| 641 | </systemPropertyVariables> |
| 642 | <rerunFailingTestsCount>2</rerunFailingTestsCount> |
| 643 | </configuration> |
| 644 | </plugin> |
| 645 | <plugin> |
| 646 | <groupId>org.apache.maven.plugins</groupId> |
| 647 | <artifactId>maven-dependency-plugin</artifactId> |
| 648 | <executions> |
| 649 | <execution> |
| 650 | <id>extract-docker-file</id> |
| 651 | <goals> |
| 652 | <goal>unpack</goal> |
| 653 | </goals> |
| 654 | <configuration> |
Benjamin, Max | 2dbbd78 | 2020-06-02 23:18:13 -0400 | [diff] [blame] | 655 | <skip>true</skip> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 656 | <artifactItems> |
| 657 | <artifactItem> |
| 658 | <groupId>org.onap.so</groupId> |
| 659 | <artifactId>deployment-configs</artifactId> |
| 660 | <version>${project.version}</version> |
| 661 | <outputDirectory>${project.build.directory}</outputDirectory> |
| 662 | <includes>*,scripts/**,certs/**, logger/*.xml</includes> |
| 663 | <excludes>Kubernetes</excludes> |
| 664 | </artifactItem> |
| 665 | </artifactItems> |
| 666 | </configuration> |
| 667 | </execution> |
| 668 | </executions> |
| 669 | </plugin> |
| 670 | <plugin> |
| 671 | <groupId>org.apache.maven.plugins</groupId> |
| 672 | <artifactId>maven-jar-plugin</artifactId> |
| 673 | <version>3.0.2</version> |
| 674 | <executions> |
| 675 | <execution> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 676 | <id>original</id> |
Benjamin, Max | 2dbbd78 | 2020-06-02 23:18:13 -0400 | [diff] [blame] | 677 | <phase>none</phase> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 678 | <goals> |
| 679 | <goal>jar</goal> |
| 680 | </goals> |
| 681 | <configuration> |
| 682 | <classifier>${originalClassifier}</classifier> |
| 683 | <includes> |
| 684 | <include>**</include> |
| 685 | </includes> |
| 686 | </configuration> |
| 687 | </execution> |
| 688 | </executions> |
| 689 | </plugin> |
| 690 | <plugin> |
| 691 | <groupId>org.springframework.boot</groupId> |
| 692 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 693 | <version>${springboot.version}</version> |
| 694 | <executions> |
| 695 | <execution> |
| 696 | <id>build-info</id> |
| 697 | <goals> |
| 698 | <goal>build-info</goal> |
| 699 | </goals> |
| 700 | </execution> |
| 701 | </executions> |
| 702 | </plugin> |
| 703 | </plugins> |
| 704 | </pluginManagement> |
| 705 | </build> |
| 706 | <!-- *********************************************************************************************************** --> |
| 707 | <!-- Dependencies --> |
| 708 | <dependencies> |
Bhatt, Prema | ae9a2bd | 2019-09-17 08:08:12 -0400 | [diff] [blame] | 709 | <dependency> |
| 710 | <groupId>org.onap.logging-analytics</groupId> |
| 711 | <artifactId>logging-slf4j</artifactId> |
Lukasz Rajewski | 0dcaa14 | 2021-09-06 18:34:33 +0200 | [diff] [blame] | 712 | <version>${onap-logging-version}</version> |
Bhatt, Prema | ae9a2bd | 2019-09-17 08:08:12 -0400 | [diff] [blame] | 713 | </dependency> |
Plummer, Brittany | 2ede5f0 | 2019-09-10 11:29:42 -0400 | [diff] [blame] | 714 | <dependency> |
| 715 | <groupId>org.onap.logging-analytics</groupId> |
| 716 | <artifactId>logging-filter-base</artifactId> |
Lukasz Rajewski | 0dcaa14 | 2021-09-06 18:34:33 +0200 | [diff] [blame] | 717 | <version>${onap-logging-version}</version> |
Plummer, Brittany | 2ede5f0 | 2019-09-10 11:29:42 -0400 | [diff] [blame] | 718 | </dependency> |
| 719 | <dependency> |
| 720 | <groupId>org.onap.logging-analytics</groupId> |
| 721 | <artifactId>logging-filter-spring</artifactId> |
Lukasz Rajewski | 0dcaa14 | 2021-09-06 18:34:33 +0200 | [diff] [blame] | 722 | <version>${onap-logging-version}</version> |
Plummer, Brittany | 2ede5f0 | 2019-09-10 11:29:42 -0400 | [diff] [blame] | 723 | </dependency> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 724 | <dependency> |
| 725 | <groupId>com.fasterxml.jackson.core</groupId> |
| 726 | <artifactId>jackson-core</artifactId> |
Lukasz Rajewski | 22f844c | 2023-04-04 20:16:35 +0000 | [diff] [blame] | 727 | <version>${jackson.version}</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 728 | </dependency> |
| 729 | <dependency> |
| 730 | <groupId>com.fasterxml.jackson.module</groupId> |
| 731 | <artifactId>jackson-module-jaxb-annotations</artifactId> |
Lukasz Rajewski | 22f844c | 2023-04-04 20:16:35 +0000 | [diff] [blame] | 732 | <version>${jackson.version}</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 733 | </dependency> |
| 734 | <dependency> |
| 735 | <groupId>com.fasterxml.jackson.core</groupId> |
| 736 | <artifactId>jackson-databind</artifactId> |
Lukasz Rajewski | 22f844c | 2023-04-04 20:16:35 +0000 | [diff] [blame] | 737 | <version>${jackson.version}</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 738 | </dependency> |
| 739 | <dependency> |
| 740 | <groupId>com.fasterxml.jackson.core</groupId> |
| 741 | <artifactId>jackson-annotations</artifactId> |
Lukasz Rajewski | 22f844c | 2023-04-04 20:16:35 +0000 | [diff] [blame] | 742 | <version>${jackson.version}</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 743 | </dependency> |
| 744 | <dependency> |
| 745 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 746 | <artifactId>jackson-jaxrs-base</artifactId> |
Lukasz Rajewski | 22f844c | 2023-04-04 20:16:35 +0000 | [diff] [blame] | 747 | <version>${jackson.version}</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 748 | </dependency> |
| 749 | <dependency> |
| 750 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 751 | <artifactId>jackson-jaxrs-json-provider</artifactId> |
Lukasz Rajewski | 22f844c | 2023-04-04 20:16:35 +0000 | [diff] [blame] | 752 | <version>${jackson.version}</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 753 | </dependency> |
| 754 | <dependency> |
| 755 | <groupId>javax.ws.rs</groupId> |
| 756 | <artifactId>javax.ws.rs-api</artifactId> |
| 757 | <version>${jax.ws.rs}</version> |
| 758 | </dependency> |
| 759 | <dependency> |
| 760 | <groupId>javax.annotation</groupId> |
| 761 | <artifactId>javax.annotation-api</artifactId> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 762 | </dependency> |
| 763 | <dependency> |
| 764 | <groupId>javax.inject</groupId> |
| 765 | <artifactId>javax.inject</artifactId> |
| 766 | <version>1</version> |
| 767 | </dependency> |
| 768 | <dependency> |
| 769 | <groupId>org.mockito</groupId> |
| 770 | <artifactId>mockito-core</artifactId> |
| 771 | </dependency> |
| 772 | <dependency> |
| 773 | <groupId>org.hamcrest</groupId> |
| 774 | <artifactId>hamcrest-core</artifactId> |
| 775 | </dependency> |
| 776 | <dependency> |
| 777 | <groupId>org.hamcrest</groupId> |
| 778 | <artifactId>hamcrest-library</artifactId> |
| 779 | </dependency> |
| 780 | <dependency> |
| 781 | <groupId>junit</groupId> |
| 782 | <artifactId>junit</artifactId> |
| 783 | <scope>test</scope> |
| 784 | </dependency> |
| 785 | <dependency> |
| 786 | <groupId>xmlunit</groupId> |
| 787 | <artifactId>xmlunit</artifactId> |
| 788 | <version>1.6</version> |
| 789 | <scope>test</scope> |
| 790 | </dependency> |
| 791 | <dependency> |
| 792 | <groupId>com.github.tomakehurst</groupId> |
| 793 | <artifactId>wiremock-standalone</artifactId> |
| 794 | <version>2.13.0</version> |
| 795 | <scope>test</scope> |
| 796 | <exclusions> |
| 797 | <exclusion> |
| 798 | <groupId>org.mortbay.jetty</groupId> |
| 799 | <artifactId>jetty</artifactId> |
| 800 | </exclusion> |
| 801 | <exclusion> |
| 802 | <groupId>com.google.guava</groupId> |
| 803 | <artifactId>guava</artifactId> |
| 804 | </exclusion> |
| 805 | <exclusion> |
| 806 | <groupId>com.fasterxml.jackson.core</groupId> |
| 807 | <artifactId>jackson-core</artifactId> |
| 808 | </exclusion> |
| 809 | <exclusion> |
| 810 | <groupId>com.fasterxml.jackson.core</groupId> |
| 811 | <artifactId>jackson-annotations</artifactId> |
| 812 | </exclusion> |
| 813 | <exclusion> |
| 814 | <groupId>com.fasterxml.jackson.core</groupId> |
| 815 | <artifactId>jackson-databind</artifactId> |
| 816 | </exclusion> |
| 817 | <exclusion> |
| 818 | <groupId>org.apache.httpcomponents</groupId> |
| 819 | <artifactId>httpclient</artifactId> |
| 820 | </exclusion> |
| 821 | <exclusion> |
| 822 | <groupId>org.skyscreamer</groupId> |
| 823 | <artifactId>jsonassert</artifactId> |
| 824 | </exclusion> |
| 825 | <exclusion> |
| 826 | <groupId>xmlunit</groupId> |
| 827 | <artifactId>xmlunit</artifactId> |
| 828 | </exclusion> |
| 829 | <exclusion> |
| 830 | <groupId>com.jayway.jsonpath</groupId> |
| 831 | <artifactId>json-path</artifactId> |
| 832 | </exclusion> |
| 833 | <exclusion> |
| 834 | <groupId>net.sf.jopt-simple</groupId> |
| 835 | <artifactId>jopt-simple</artifactId> |
| 836 | </exclusion> |
| 837 | </exclusions> |
| 838 | </dependency> |
| 839 | <dependency> |
| 840 | <groupId>com.openpojo</groupId> |
| 841 | <artifactId>openpojo</artifactId> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 842 | <version>0.8.13</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 843 | </dependency> |
| 844 | <dependency> |
| 845 | <groupId>com.shazam</groupId> |
| 846 | <artifactId>shazamcrest</artifactId> |
| 847 | <version>0.11</version> |
| 848 | <scope>test</scope> |
| 849 | <exclusions> |
| 850 | <exclusion> |
| 851 | <groupId>com.google.guava</groupId> |
| 852 | <artifactId>guava</artifactId> |
| 853 | </exclusion> |
| 854 | <exclusion> |
| 855 | <groupId>org.apache.commons</groupId> |
| 856 | <artifactId>commons-lang3</artifactId> |
| 857 | </exclusion> |
| 858 | </exclusions> |
| 859 | </dependency> |
| 860 | <dependency> |
| 861 | <groupId>org.assertj</groupId> |
| 862 | <artifactId>assertj-core</artifactId> |
| 863 | <version>3.11.1</version> |
| 864 | <scope>test</scope> |
| 865 | </dependency> |
| 866 | <dependency> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 867 | <groupId>org.ow2.asm</groupId> |
| 868 | <artifactId>asm</artifactId> |
| 869 | <version>7.0</version> |
| 870 | <scope>test</scope> |
| 871 | </dependency> |
| 872 | <dependency> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 873 | <groupId>com.googlecode.junit-toolbox</groupId> |
| 874 | <artifactId>junit-toolbox</artifactId> |
| 875 | <version>2.4</version> |
| 876 | </dependency> |
| 877 | </dependencies> |
| 878 | <dependencyManagement> |
| 879 | <dependencies> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 880 | <dependency> |
Bonkur, Venkat | 28a07e8 | 2020-04-14 15:49:11 -0400 | [diff] [blame] | 881 | <groupId>org.onap.logging-analytics</groupId> |
| 882 | <artifactId>logging-slf4j</artifactId> |
waqas.ikram | abfaee8 | 2021-06-16 16:54:04 +0100 | [diff] [blame] | 883 | <version>${onap-logging-version}</version> |
Bonkur, Venkat | 28a07e8 | 2020-04-14 15:49:11 -0400 | [diff] [blame] | 884 | </dependency> |
| 885 | <dependency> |
| 886 | <groupId>org.onap.logging-analytics</groupId> |
| 887 | <artifactId>logging-filter-base</artifactId> |
waqas.ikram | abfaee8 | 2021-06-16 16:54:04 +0100 | [diff] [blame] | 888 | <version>${onap-logging-version}</version> |
Bonkur, Venkat | 28a07e8 | 2020-04-14 15:49:11 -0400 | [diff] [blame] | 889 | </dependency> |
| 890 | <dependency> |
| 891 | <groupId>org.onap.logging-analytics</groupId> |
| 892 | <artifactId>logging-filter-spring</artifactId> |
waqas.ikram | abfaee8 | 2021-06-16 16:54:04 +0100 | [diff] [blame] | 893 | <version>${onap-logging-version}</version> |
Bonkur, Venkat | 28a07e8 | 2020-04-14 15:49:11 -0400 | [diff] [blame] | 894 | </dependency> |
| 895 | <dependency> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 896 | <groupId>org.apache.httpcomponents</groupId> |
| 897 | <artifactId>httpcore</artifactId> |
| 898 | <version>4.4.4</version> |
| 899 | <scope>compile</scope> |
| 900 | </dependency> |
| 901 | <dependency> |
| 902 | <groupId>commons-codec</groupId> |
| 903 | <artifactId>commons-codec</artifactId> |
shashikanth.vh@huawei.com | f45203d | 2021-08-05 20:52:50 +0530 | [diff] [blame] | 904 | <version>1.15</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 905 | <scope>compile</scope> |
| 906 | </dependency> |
| 907 | <dependency> |
| 908 | <groupId>commons-io</groupId> |
| 909 | <artifactId>commons-io</artifactId> |
Mukesh Paliwal | 69f17d5 | 2021-08-05 21:46:53 +0530 | [diff] [blame] | 910 | <version>2.8.0</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 911 | <scope>compile</scope> |
| 912 | </dependency> |
| 913 | <dependency> |
| 914 | <groupId>com.sun.xml.fastinfoset</groupId> |
| 915 | <artifactId>FastInfoset</artifactId> |
| 916 | <version>1.2.13</version> |
| 917 | <scope>compile</scope> |
| 918 | </dependency> |
| 919 | <dependency> |
| 920 | <groupId>org.springframework.boot</groupId> |
| 921 | <artifactId>spring-boot-dependencies</artifactId> |
| 922 | <version>${springboot.version}</version> |
| 923 | <type>pom</type> |
| 924 | <scope>import</scope> |
| 925 | </dependency> |
| 926 | <dependency> |
| 927 | <groupId>org.yaml</groupId> |
| 928 | <artifactId>snakeyaml</artifactId> |
deepikasatheesh | f70e8de | 2020-07-29 22:53:54 -0700 | [diff] [blame] | 929 | <version>1.26</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 930 | </dependency> |
| 931 | <dependency> |
| 932 | <groupId>javax.interceptor</groupId> |
| 933 | <artifactId>javax.interceptor-api</artifactId> |
| 934 | <version>1.2.2</version> |
| 935 | </dependency> |
| 936 | <dependency> |
| 937 | <groupId>org.springframework.boot</groupId> |
| 938 | <artifactId>spring-boot-starter-test</artifactId> |
| 939 | <version>${springboot.version}</version> |
| 940 | <exclusions> |
| 941 | <exclusion> |
| 942 | <groupId>com.vaadin.external.google</groupId> |
| 943 | <artifactId>android-json</artifactId> |
| 944 | </exclusion> |
Benjamin, Max (mb388a) | d5968f5 | 2021-02-05 20:34:11 -0500 | [diff] [blame] | 945 | <exclusion> |
| 946 | <groupId>org.junit.jupiter</groupId> |
| 947 | <artifactId>junit-jupiter</artifactId> |
| 948 | </exclusion> |
| 949 | <exclusion> |
| 950 | <groupId>org.junit.vintage</groupId> |
| 951 | <artifactId>junit-vintage-engine</artifactId> |
| 952 | </exclusion> |
| 953 | <exclusion> |
| 954 | <groupId>org.mockito</groupId> |
| 955 | <artifactId>mockito-junit-jupiter</artifactId> |
| 956 | </exclusion> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 957 | </exclusions> |
| 958 | </dependency> |
| 959 | <dependency> |
| 960 | <groupId>net.javacrumbs.shedlock</groupId> |
| 961 | <artifactId>shedlock-spring</artifactId> |
Smokowski, Steven | 2e0f12e | 2019-12-03 07:51:11 -0500 | [diff] [blame] | 962 | <version>4.0.0</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 963 | </dependency> |
| 964 | <dependency> |
| 965 | <groupId>net.javacrumbs.shedlock</groupId> |
| 966 | <artifactId>shedlock-provider-jdbc-template</artifactId> |
Smokowski, Steven | 2e0f12e | 2019-12-03 07:51:11 -0500 | [diff] [blame] | 967 | <version>4.0.0</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 968 | </dependency> |
| 969 | <dependency> |
| 970 | <groupId>org.flywaydb</groupId> |
| 971 | <artifactId>flyway-core</artifactId> |
Benjamin, Max (mb388a) | d5968f5 | 2021-02-05 20:34:11 -0500 | [diff] [blame] | 972 | <version>6.5.7</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 973 | </dependency> |
| 974 | <dependency> |
| 975 | <groupId>org.json</groupId> |
| 976 | <artifactId>json</artifactId> |
kiran mhetre | dd528de | 2023-03-29 10:40:39 +0000 | [diff] [blame] | 977 | <version>20220924</version> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 978 | </dependency> |
Boslet, Cory | fd2aba2 | 2020-05-08 14:58:31 -0400 | [diff] [blame] | 979 | <dependency> |
| 980 | <groupId>org.onap.aai.schema-service</groupId> |
| 981 | <artifactId>aai-schema</artifactId> |
Lukasz Rajewski | c191972 | 2021-09-24 11:49:54 +0200 | [diff] [blame] | 982 | <version>1.9.2</version> |
Boslet, Cory | fd2aba2 | 2020-05-08 14:58:31 -0400 | [diff] [blame] | 983 | </dependency> |
Benjamin, Max (mb388a) | 733c460 | 2020-10-08 15:31:17 -0400 | [diff] [blame] | 984 | <dependency> |
Benjamin, Max | 23f8d80 | 2020-10-16 13:18:43 -0400 | [diff] [blame] | 985 | <groupId>org.apache.cxf</groupId> |
| 986 | <artifactId>cxf-rt-rs-client</artifactId> |
| 987 | <version>${cxf.version}</version> |
| 988 | <exclusions> |
| 989 | <exclusion> |
| 990 | <groupId>org.jboss.spec.javax.rmi</groupId> |
| 991 | <artifactId>jboss-rmi-api_1.0_spec</artifactId> |
| 992 | </exclusion> |
| 993 | </exclusions> |
| 994 | </dependency> |
| 995 | <dependency> |
| 996 | <groupId>org.apache.cxf</groupId> |
| 997 | <artifactId>cxf-rt-bindings-soap</artifactId> |
| 998 | <version>${cxf.version}</version> |
| 999 | <exclusions> |
| 1000 | <exclusion> |
| 1001 | <groupId>org.jboss.spec.javax.rmi</groupId> |
| 1002 | <artifactId>jboss-rmi-api_1.0_spec</artifactId> |
| 1003 | </exclusion> |
| 1004 | </exclusions> |
| 1005 | </dependency> |
| 1006 | <dependency> |
| 1007 | <groupId>org.apache.cxf</groupId> |
| 1008 | <artifactId>cxf-rt-transports-http</artifactId> |
| 1009 | <version>${cxf.version}</version> |
| 1010 | <exclusions> |
| 1011 | <exclusion> |
| 1012 | <groupId>org.jboss.spec.javax.rmi</groupId> |
| 1013 | <artifactId>jboss-rmi-api_1.0_spec</artifactId> |
| 1014 | </exclusion> |
| 1015 | </exclusions> |
| 1016 | </dependency> |
| 1017 | <dependency> |
| 1018 | <groupId>org.apache.cxf</groupId> |
| 1019 | <artifactId>cxf-spring-boot-starter-jaxws</artifactId> |
| 1020 | <version>${cxf.version}</version> |
| 1021 | <exclusions> |
| 1022 | <exclusion> |
| 1023 | <groupId>org.jboss.spec.javax.rmi</groupId> |
| 1024 | <artifactId>jboss-rmi-api_1.0_spec</artifactId> |
| 1025 | </exclusion> |
| 1026 | </exclusions> |
| 1027 | </dependency> |
| 1028 | <dependency> |
| 1029 | <groupId>org.apache.cxf</groupId> |
| 1030 | <artifactId>cxf-spring-boot-starter-jaxrs</artifactId> |
| 1031 | <version>${cxf.version}</version> |
| 1032 | <exclusions> |
| 1033 | <exclusion> |
| 1034 | <groupId>org.jboss.spec.javax.rmi</groupId> |
| 1035 | <artifactId>jboss-rmi-api_1.0_spec</artifactId> |
| 1036 | </exclusion> |
| 1037 | </exclusions> |
| 1038 | </dependency> |
| 1039 | <dependency> |
| 1040 | <groupId>org.apache.cxf</groupId> |
Benjamin, Max (mb388a) | b8b0464 | 2021-01-23 16:07:59 -0500 | [diff] [blame] | 1041 | <artifactId>cxf-rt-rs-service-description-openapi-v3</artifactId> |
| 1042 | <version>${cxf.version}</version> |
| 1043 | <exclusions> |
| 1044 | <exclusion> |
| 1045 | <groupId>org.jboss.spec.javax.rmi</groupId> |
| 1046 | <artifactId>jboss-rmi-api_1.0_spec</artifactId> |
| 1047 | </exclusion> |
| 1048 | </exclusions> |
| 1049 | </dependency> |
| 1050 | <dependency> |
Benjamin, Max (mb388a) | 4209b11 | 2021-01-13 12:37:09 -0500 | [diff] [blame] | 1051 | <groupId>org.onap.aaf.authz</groupId> |
| 1052 | <artifactId>aaf-cadi-client</artifactId> |
| 1053 | <version>${aaf.version}</version> |
Benjamin, Max (mb388a) | dd89e14 | 2021-01-28 13:12:40 -0500 | [diff] [blame] | 1054 | </dependency> |
| 1055 | <dependency> |
| 1056 | <groupId>org.onap.aaf.authz</groupId> |
| 1057 | <artifactId>aaf-cadi-aaf</artifactId> |
| 1058 | <version>${aaf.version}</version> |
| 1059 | <exclusions> |
| 1060 | <exclusion> |
| 1061 | <groupId>javax.servlet</groupId> |
| 1062 | <artifactId>servlet-api</artifactId> |
| 1063 | </exclusion> |
| 1064 | <exclusion> |
| 1065 | <groupId>log4j</groupId> |
| 1066 | <artifactId>log4j</artifactId> |
| 1067 | </exclusion> |
| 1068 | </exclusions> |
| 1069 | </dependency> |
| 1070 | <dependency> |
| 1071 | <groupId>org.onap.aaf.authz</groupId> |
| 1072 | <artifactId>aaf-auth-client</artifactId> |
| 1073 | <version>${aaf.version}</version> |
| 1074 | <scope>runtime</scope> |
| 1075 | </dependency> |
| 1076 | <dependency> |
| 1077 | <groupId>org.onap.aaf.authz</groupId> |
| 1078 | <artifactId>aaf-misc-env</artifactId> |
| 1079 | <version>${aaf.version}</version> |
| 1080 | <scope>runtime</scope> |
| 1081 | </dependency> |
| 1082 | <dependency> |
| 1083 | <groupId>org.onap.aaf.authz</groupId> |
| 1084 | <artifactId>aaf-misc-rosetta</artifactId> |
| 1085 | <version>${aaf.version}</version> |
| 1086 | <scope>runtime</scope> |
| 1087 | </dependency> |
BOSLET, CORY | 8aca451 | 2021-03-09 22:57:29 -0500 | [diff] [blame] | 1088 | <dependency> |
waqas.ikram | abfaee8 | 2021-06-16 16:54:04 +0100 | [diff] [blame] | 1089 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 1090 | <artifactId>mariaDB4j</artifactId> |
| 1091 | <version>2.3.0</version> |
| 1092 | <scope>test</scope> |
BOSLET, CORY | 8aca451 | 2021-03-09 22:57:29 -0500 | [diff] [blame] | 1093 | </dependency> |
| 1094 | <dependency> |
waqas.ikram | abfaee8 | 2021-06-16 16:54:04 +0100 | [diff] [blame] | 1095 | <groupId>org.springframework.cloud</groupId> |
| 1096 | <artifactId>spring-cloud-contract-wiremock</artifactId> |
| 1097 | <version>1.2.4.RELEASE</version> |
| 1098 | <scope>test</scope> |
BOSLET, CORY | 8aca451 | 2021-03-09 22:57:29 -0500 | [diff] [blame] | 1099 | </dependency> |
| 1100 | <dependency> |
waqas.ikram | abfaee8 | 2021-06-16 16:54:04 +0100 | [diff] [blame] | 1101 | <groupId>org.camunda.bpm.assert</groupId> |
| 1102 | <artifactId>camunda-bpm-assert</artifactId> |
| 1103 | <version>3.0.0</version> |
| 1104 | <scope>test</scope> |
BOSLET, CORY | 8aca451 | 2021-03-09 22:57:29 -0500 | [diff] [blame] | 1105 | </dependency> |
| 1106 | <dependency> |
waqas.ikram | abfaee8 | 2021-06-16 16:54:04 +0100 | [diff] [blame] | 1107 | <groupId>janino</groupId> |
| 1108 | <artifactId>janino</artifactId> |
| 1109 | <version>2.5.15</version> |
BOSLET, CORY | 8aca451 | 2021-03-09 22:57:29 -0500 | [diff] [blame] | 1110 | </dependency> |
| 1111 | <dependency> |
waqas.ikram | abfaee8 | 2021-06-16 16:54:04 +0100 | [diff] [blame] | 1112 | <groupId>org.camunda.bpm</groupId> |
| 1113 | <artifactId>camunda-external-task-client</artifactId> |
| 1114 | <version>1.4.0</version> |
BOSLET, CORY | 8aca451 | 2021-03-09 22:57:29 -0500 | [diff] [blame] | 1115 | </dependency> |
| 1116 | <dependency> |
waqas.ikram | abfaee8 | 2021-06-16 16:54:04 +0100 | [diff] [blame] | 1117 | <groupId>pl.pragmatists</groupId> |
| 1118 | <artifactId>JUnitParams</artifactId> |
| 1119 | <version>1.0.5</version> |
| 1120 | <scope>test</scope> |
| 1121 | </dependency> |
| 1122 | <dependency> |
| 1123 | <groupId>io.swagger.core.v3</groupId> |
| 1124 | <artifactId>swagger-jaxrs2</artifactId> |
| 1125 | <version>2.1.7</version> |
BOSLET, CORY | 8aca451 | 2021-03-09 22:57:29 -0500 | [diff] [blame] | 1126 | </dependency> |
| 1127 | <dependency> |
| 1128 | <groupId>org.camunda.bpm</groupId> |
| 1129 | <artifactId>camunda-bom</artifactId> |
| 1130 | <version>7.14.0</version> |
| 1131 | <scope>import</scope> |
| 1132 | <type>pom</type> |
| 1133 | </dependency> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 1134 | </dependencies> |
| 1135 | </dependencyManagement> |
| 1136 | <profiles> |
| 1137 | <profile> |
| 1138 | <id>docker-image-build</id> |
| 1139 | <properties> |
| 1140 | <docker.skip>false</docker.skip> |
| 1141 | <docker.skip.build>false</docker.skip.build> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 1142 | </properties> |
| 1143 | </profile> |
| 1144 | <profile> |
| 1145 | <id>docker-image-build-push</id> |
| 1146 | <properties> |
| 1147 | <docker.skip>false</docker.skip> |
| 1148 | <docker.skip.build>false</docker.skip.build> |
| 1149 | <docker.skip.push>false</docker.skip.push> |
Benjamin, Max (mb388a) | f47919f | 2019-04-08 14:14:34 -0400 | [diff] [blame] | 1150 | </properties> |
| 1151 | </profile> |
| 1152 | <profile> |
| 1153 | <id>format</id> |
| 1154 | <properties> |
| 1155 | <format.skipValidate>true</format.skipValidate> |
| 1156 | <format.skipExecute>false</format.skipExecute> |
| 1157 | </properties> |
| 1158 | </profile> |
| 1159 | <profile> |
| 1160 | <id>m2e</id> |
| 1161 | <activation> |
| 1162 | <property> |
| 1163 | <name>m2e.version</name> |
| 1164 | </property> |
| 1165 | </activation> |
| 1166 | <properties> |
| 1167 | <originalClassifier /> |
| 1168 | </properties> |
| 1169 | </profile> |
| 1170 | </profiles> |
Benjamin, Max | a5de2db | 2020-08-07 11:36:18 -0400 | [diff] [blame] | 1171 | </project> |