diff options
-rw-r--r-- | pom.xml | 18 | ||||
-rw-r--r-- | version.properties | 2 |
2 files changed, 17 insertions, 3 deletions
@@ -20,12 +20,12 @@ <parent> <groupId>org.onap.oparent</groupId> <artifactId>oparent</artifactId> - <version>2.1.0</version> + <version>3.0.0</version> </parent> <groupId>org.onap.msb.swagger-sdk</groupId> <artifactId>swagger-sdk</artifactId> - <version>1.2.5</version> + <version>1.2.6-SNAPSHOT</version> <packaging>jar</packaging> <name>msb-swagger-sdk</name> @@ -83,4 +83,18 @@ <scope>test</scope> </dependency> </dependencies> + <build> + <pluginManagement> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <release combine.self="override"></release> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> </project> diff --git a/version.properties b/version.properties index 4fd02cd..0cb18ba 100644 --- a/version.properties +++ b/version.properties @@ -1,6 +1,6 @@ major=1 minor=2 -patch=5 +patch=6 base_version=${major}.${minor}.${patch} release_version=${base_version} snapshot_version=${base_version}-SNAPSHOT |