diff options
author | Venkata Harish K Kajur <vk250x@att.com> | 2017-12-08 14:08:18 -0500 |
---|---|---|
committer | Venkata Harish K Kajur <vk250x@att.com> | 2017-12-13 13:26:42 -0500 |
commit | d6a892c75c903a79127c5f70a4e04ebc6e11c54d (patch) | |
tree | 58e769a24876324b11fd72f9023a3c7d8a81870a | |
parent | 8330923db923414eef5413acb2ac977b39f7ca46 (diff) |
Fix the sparky logging service bug
for the dependency of commong logging to
use the project version
Issue-ID: AAI-546
Change-Id: I2e0271c148e907959b83d5938e16748f763a4784
Signed-off-by: Venkata Harish K Kajur <vk250x@att.com>
-rw-r--r-- | pom.xml | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -9,7 +9,7 @@ </parent> <groupId>org.onap.aai.sparky-be</groupId> <artifactId>sparky-be</artifactId> - <version>1.1.0-SNAPSHOT</version> + <version>1.1.1-SNAPSHOT</version> <name>aai-sparky-be</name> <properties> @@ -18,7 +18,6 @@ <module.ajsc.namespace.version>v1</module.ajsc.namespace.version> <ajscRuntimeVersion>2.0.0</ajscRuntimeVersion> <absoluteDistFilesRoot>/appl/${project.artifactId}</absoluteDistFilesRoot> - <!-- For NO Versioning, REMOVE the /${project.version} from the <distFilesRoot> property, below. PLEASE, NOTE: If your ${project.version} is a "-SNAPSHOT" version, THIS will be used as your directory structure. If you do NOT want @@ -108,7 +107,7 @@ <dependency> <groupId>org.onap.aai</groupId> <artifactId>rest-client</artifactId> - <version>1.1.0-SNAPSHOT</version> + <version>${project.version}</version> </dependency> @@ -153,7 +152,7 @@ <dependency> <groupId>org.onap.aai.logging-service</groupId> <artifactId>common-logging</artifactId> - <version>1.1.0-SNAPSHOT</version> + <version>${project.version}</version> </dependency> <dependency> @@ -400,7 +399,7 @@ <artifactItem> <groupId>org.onap.aai.sparky-fe</groupId> <artifactId>sparky-fe</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>${project.version}</version> <type>war</type> <outputDirectory>${basedir}/target/swm/package/nix/dist_files${distFilesRoot}/extApps/</outputDirectory> <destFileName>aai.war</destFileName> |