diff options
-rwxr-xr-x | pom.xml | 18 | ||||
-rwxr-xr-x | version.properties | 2 |
2 files changed, 10 insertions, 10 deletions
@@ -27,7 +27,7 @@ <groupId>org.onap.music</groupId> <artifactId>MUSIC</artifactId> <packaging>jar</packaging> - <version>3.2.35-SNAPSHOT</version> + <version>3.2.36-SNAPSHOT</version> <description> This is the MUSIC REST interface, packaged as a Springboot jar file. </description> @@ -37,7 +37,7 @@ <artifactId>oparent</artifactId> <version>2.0.0</version> <relativePath/> - </parent> + </parent> <dependencyManagement> <dependencies> @@ -338,7 +338,7 @@ <groupId>com.datastax.cassandra</groupId> <artifactId>cassandra-driver-core</artifactId> <version>${cassandra.version}</version> - </dependency> + </dependency> <!-- /Cassandra --> <!-- Jersey --> <dependency> @@ -436,22 +436,22 @@ <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> - <version>2.9.8</version> + <version>2.9.9</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> - <version>2.9.8</version> + <version>2.9.9.2</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> - <version>2.9.8</version> + <version>2.9.9</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> - <version>2.9.8</version> + <version>2.9.9</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> @@ -654,8 +654,8 @@ </plugins> </build> </profile> - <profile> - <id>default</id> + <profile> + <id>default</id> </profile> </profiles> <distributionManagement> diff --git a/version.properties b/version.properties index c9da85ed..a7893b25 100755 --- a/version.properties +++ b/version.properties @@ -4,7 +4,7 @@ major=3 minor=2 -patch=35 +patch=36 base_version=${major}.${minor}.${patch} |