diff options
author | Sneha Dantkale <Sneha.dantkale@amdocs.com> | 2020-02-14 19:15:02 +0530 |
---|---|---|
committer | Forsyth, James (jf2512) <jf2512@att.com> | 2020-02-14 17:05:45 -0500 |
commit | 48960e6033145667366bbcd2f8ad1ae44c2fd260 (patch) | |
tree | e75e7d852ee672412422c4fae2689c804174796b /aai-parent/pom.xml | |
parent | 54290b7443eb6f15c271031a6eef2f3e51c2f261 (diff) |
[AAI-2528] | Update to spring-boot 2.1.6.RELEASE
Issue-ID: AAI-2528
Change-Id: I87756450c12538af3f21e4affa24ef76724d232c
Signed-off-by: Sneha Dantkale <Sneha.dantkale@amdocs.com>
Change-Id: I9437899ba1c7f2aec816a8076c954b080f9512fb
Signed-off-by: Sneha Dantkale <Sneha.dantkale@amdocs.com>
Change-Id: If3ad26f98c815e4872320b2652cf6c2e0b675de0
Signed-off-by: Sneha Dantkale <Sneha.dantkale@amdocs.com>
Diffstat (limited to 'aai-parent/pom.xml')
-rw-r--r-- | aai-parent/pom.xml | 31 |
1 files changed, 28 insertions, 3 deletions
diff --git a/aai-parent/pom.xml b/aai-parent/pom.xml index 5969d7e1..13565487 100644 --- a/aai-parent/pom.xml +++ b/aai-parent/pom.xml @@ -27,7 +27,7 @@ limitations under the License. <parent> <groupId>org.onap.aai.aai-common</groupId> <artifactId>aai-common</artifactId> - <version>1.6.5-SNAPSHOT</version> + <version>1.6.6-SNAPSHOT</version> </parent> <artifactId>aai-parent</artifactId> <name>aai-parent</name> @@ -96,6 +96,7 @@ limitations under the License. <plexus.utils.version>3.1.1</plexus.utils.version> <reflections.version>0.9.10</reflections.version> <snakeyaml.version>1.25</snakeyaml.version> + <spring.boot.version>1.5.22.RELEASE</spring.boot.version> <sonar.jacoco.reportPath /> @@ -104,6 +105,7 @@ limitations under the License. <!-- we let things pass by default, set custom level for each child project --> <jacoco.line.coverage.limit>0.00</jacoco.line.coverage.limit> + <jacoco.version>0.8.5</jacoco.version> <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version> <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin> @@ -116,12 +118,30 @@ limitations under the License. <spring.jms.version>4.3.25.RELEASE</spring.jms.version> <spring.test.version>4.3.25.RELEASE</spring.test.version> <spring.security.rsa.version>1.0.8.RELEASE</spring.security.rsa.version> + <json.simple.version>1.1.1</json.simple.version> + <powermock.api.mockito2.version>2.0.4</powermock.api.mockito2.version> </properties> + + <profiles> + <profile> + <id>spring-boot-2-1</id> + <properties> + <spring.boot.version>2.1.6.RELEASE</spring.boot.version> + </properties> + </profile> + </profiles> + <dependencyManagement> <dependencies> <dependency> + <groupId>com.googlecode.json-simple</groupId> + <artifactId>json-simple</artifactId> + <version>${json.simple.version}</version> + </dependency> + + <dependency> <groupId>org.onap.aai.aai-common</groupId> <artifactId>aai-schema-ingest</artifactId> <version>${aai.release.version}</version> @@ -336,8 +356,13 @@ limitations under the License. <dependency> <groupId>org.powermock</groupId> - <artifactId>powermock-api-mockito</artifactId> - <version>${powermock.version}</version> + <artifactId>powermock-api-mockito2</artifactId> + <version>${powermock.api.mockito2.version}</version> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-core</artifactId> + <version>${powermock.api.mockito2.version}</version> </dependency> <dependency> <groupId>org.powermock</groupId> |