diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2020-01-16 16:29:24 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-01-16 16:29:24 +0000 |
commit | 1d488ba498750235f26a957a7cd31ce12a1d3518 (patch) | |
tree | b80955e5aa338f881efb967e71744b78c2c4922b /pom.xml | |
parent | 676c3bb86a2424f70543e7fbaae388e7f9f370dd (diff) | |
parent | 25d3e43f27fb4d055af69c6934f3531fef115a02 (diff) |
Merge "policy/drools-apps jdk11 upgrades"
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 19 |
1 files changed, 6 insertions, 13 deletions
@@ -25,7 +25,7 @@ <parent> <groupId>org.onap.policy.parent</groupId> <artifactId>integration</artifactId> - <version>3.1.0</version> + <version>3.1.1-SNAPSHOT</version> <relativePath /> </parent> @@ -37,13 +37,6 @@ <packaging>pom</packaging> <properties> - <!-- Project common build settings --> - <maven.compiler.source>1.8</maven.compiler.source> - <maven.compiler.target>1.8</maven.compiler.target> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <project.source.version>1.8</project.source.version> - <project.target.version>1.8</project.target.version> - <!-- Project path properties --> <nexusproxy>https://nexus.onap.org</nexusproxy> <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath> @@ -59,8 +52,8 @@ <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis> <!-- Project common dependency versions --> - <version.policy.common>1.6.1</version.policy.common> - <policy.models.version>2.2.0</policy.models.version> + <version.policy.common>1.6.2-SNAPSHOT</version.policy.common> + <policy.models.version>2.2.1-SNAPSHOT</policy.models.version> <version.policy.drools-pdp>1.6.0-SNAPSHOT</version.policy.drools-pdp> </properties> @@ -104,8 +97,7 @@ <artifactId>maven-compiler-plugin</artifactId> <configuration> <encoding>${project.encoding}</encoding> - <source>${project.source.version}</source> - <target>${project.target.version}</target> + <release>${java.version}</release> </configuration> </plugin> <plugin> @@ -134,12 +126,13 @@ with minor changes --> <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> - <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> + <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories> <includeResources>true</includeResources> <includeTestSourceDirectory>true</includeTestSourceDirectory> <includeTestResources>true</includeTestResources> <excludes> </excludes> + <suppressionsLocation>/checkstyle-suppressions.xml</suppressionsLocation> <consoleOutput>true</consoleOutput> <failsOnViolation>true</failsOnViolation> <violationSeverity>warning</violationSeverity> |