diff options
-rwxr-xr-x | pom.xml | 8 | ||||
-rwxr-xr-x | version.properties | 2 |
2 files changed, 8 insertions, 2 deletions
@@ -25,7 +25,7 @@ <groupId>org.onap.music</groupId> <artifactId>MUSIC</artifactId> <packaging>war</packaging> - <version>3.0.23</version> + <version>3.0.24</version> <description> This is the MUSIC REST interface, packaged as a war file. </description> @@ -344,6 +344,12 @@ <artifactId>genson</artifactId> <version>1.3</version> </dependency> --> + <!-- Added to fix MUSIC-157 License Issue --> + <dependency> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + <version>2.2.3</version> + </dependency> </dependencies> diff --git a/version.properties b/version.properties index dc14e8e0..36a7f087 100755 --- a/version.properties +++ b/version.properties @@ -4,7 +4,7 @@ major=3 minor=0 -patch=23 +patch=24 base_version=${major}.${minor}.${patch} |