diff options
author | Bruno Sakoto <bruno.sakoto@bell.ca> | 2021-06-10 14:04:20 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-06-10 14:04:20 +0000 |
commit | e3f7305a421e075eef97d4eefdd590ca95a2a4f6 (patch) | |
tree | f40914b103b28e1a6c6ea6caaeb34265da92b9a5 /cps-parent/pom.xml | |
parent | 171f17003d3e130385de3cfda04f44447e421f61 (diff) | |
parent | f549c7c144512d98f5cdb847d172193a0cad9358 (diff) |
Merge "Add json schema for events"
Diffstat (limited to 'cps-parent/pom.xml')
-rwxr-xr-x | cps-parent/pom.xml | 35 |
1 files changed, 27 insertions, 8 deletions
diff --git a/cps-parent/pom.xml b/cps-parent/pom.xml index eb71b52e00..78a89f0aca 100755 --- a/cps-parent/pom.xml +++ b/cps-parent/pom.xml @@ -37,21 +37,22 @@ <properties> <app>org.onap.cps.Application</app> + <docker.repository.push>nexus3.onap.org:10003/</docker.repository.push> + <docker.repository.pull>nexus3.onap.org:10001/</docker.repository.pull> <java.version>11</java.version> + <jsonschema2pojo-maven-plugin.version>1.1.1</jsonschema2pojo-maven-plugin.version> <minimum-coverage>0.9</minimum-coverage> <nexusproxy>https://nexus.onap.org</nexusproxy> - <docker.repository.push>nexus3.onap.org:10003/</docker.repository.push> - <docker.repository.pull>nexus3.onap.org:10001/</docker.repository.pull> <oparent.version>3.1.0</oparent.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> + <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> <spotbugs-maven-plugin.version>4.1.3</spotbugs-maven-plugin.version> - <spring-boot-maven-plugin.version>2.3.3.RELEASE</spring-boot-maven-plugin.version> <spotbugs.slf4j.version>1.8.0-beta4</spotbugs.slf4j.version> <spotbugs.bug-pattern.version>1.5.0</spotbugs.bug-pattern.version> <spotbugs.version>4.2.0</spotbugs.version> + <spring-boot-maven-plugin.version>2.3.3.RELEASE</spring-boot-maven-plugin.version> <swagger-codegen-maven-plugin.version>3.0.18</swagger-codegen-maven-plugin.version> - <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> <jacoco.reportDirectory.aggregate>${project.reporting.outputDirectory}/jacoco-aggregate</jacoco.reportDirectory.aggregate> <sonar.coverage.jacoco.xmlReportPaths> @@ -180,6 +181,7 @@ If you run out of memory, changes the value of the effort element to 'Low'. --> + <addSourceDirs>true</addSourceDirs> <effort>Max</effort> <!-- Reports all bugs (other values are medium and max) --> <threshold>Low</threshold> @@ -205,6 +207,21 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.jsonschema2pojo</groupId> + <artifactId>jsonschema2pojo-maven-plugin</artifactId> + <version>${jsonschema2pojo-maven-plugin.version}</version> + <configuration> + <targetVersion>${java.version}</targetVersion> + </configuration> + <executions> + <execution> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </pluginManagement> <plugins> @@ -336,6 +353,12 @@ <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> + <configuration> + <excludes> + <exclude>org/onap/cps/rest/model/*</exclude> + <exclude>org/onap/cps/cpspath/parser/antlr4/*</exclude> + </excludes> + </configuration> <executions> <execution> <id>default-prepare-agent</id> @@ -349,10 +372,6 @@ <goal>check</goal> </goals> <configuration> - <excludes> - <exclude>org/onap/cps/rest/model/*</exclude> - <exclude>org/onap/cps/cpspath/parser/antlr4/*</exclude> - </excludes> <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile> <rules> <rule> |