diff options
-rw-r--r-- | pom.xml | 49 | ||||
-rw-r--r-- | version.properties | 2 |
2 files changed, 46 insertions, 5 deletions
@@ -21,7 +21,7 @@ limitations under the License. <groupId>org.onap.logging-analytics.pomba</groupId> <artifactId>pomba-sdnc-context-builder</artifactId> - <version>1.5.0-SNAPSHOT</version> + <version>1.5.1-SNAPSHOT</version> <packaging>jar</packaging> <parent> @@ -70,6 +70,10 @@ limitations under the License. <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-json</artifactId> </exclusion> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -89,10 +93,22 @@ limitations under the License. <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jersey</artifactId> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> @@ -135,7 +151,7 @@ limitations under the License. <dependency> <groupId>org.onap.logging-analytics.pomba</groupId> <artifactId>pomba-audit-common</artifactId> - <version>1.5.0</version> + <version>1.5.1-SNAPSHOT</version> </dependency> <dependency> <groupId>com.google.guava</groupId> @@ -152,12 +168,18 @@ limitations under the License. <dependency> <groupId>com.bazaarvoice.jolt</groupId> <artifactId>jolt-core</artifactId> - <version>0.1.0</version> + <version>0.1.1</version> </dependency> <dependency> <groupId>com.bazaarvoice.jolt</groupId> <artifactId>json-utils</artifactId> - <version>0.1.0</version> + <version>0.1.1</version> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.onap.aai</groupId> @@ -199,8 +221,27 @@ limitations under the License. <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </exclusion> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> </exclusions> </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.9.9</version> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + <version>2.9.9</version> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-annotations</artifactId> + <version>2.9.0</version> + </dependency> </dependencies> <build> diff --git a/version.properties b/version.properties index 53c44ec..e7f8200 100644 --- a/version.properties +++ b/version.properties @@ -4,7 +4,7 @@ major=1
minor=5
-patch=0
+patch=1
base_version=${major}.${minor}.${patch}
|