diff options
author | Nelson,Thomas(tn1381)(arthurdent3) <tn1381@att.com> | 2018-06-15 01:22:10 -0400 |
---|---|---|
committer | Nelson,Thomas(tn1381)(arthurdent3) <tn1381@att.com> | 2018-06-15 01:22:10 -0400 |
commit | 292f693f76293ae3b27853dd4d3c1836da537200 (patch) | |
tree | 89ae94f0603e25fd1801aaebf97709a8754c1c18 | |
parent | d796b330396d9a819220b2a2c0499cca58a2a338 (diff) |
Update pom to put correct Main class in
Change-Id: Id13940d75959d2dcd8a15423c06edca3d3cbfdb5
Issue-ID: MUSIC-77
Signed-off-by: Nelson,Thomas(tn1381)(arthurdent3) <tn1381@att.com>
-rw-r--r-- | pom.xml | 4 | ||||
-rw-r--r-- | version.properties | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -25,7 +25,7 @@ stated inside of the file. <modelVersion>4.0.0</modelVersion> <groupId>org.onap.music.prom</groupId> <artifactId>prom</artifactId> - <version>1.0.4-SNAPSHOT</version> + <version>1.0.5-SNAPSHOT</version> <parent> <groupId>org.onap.oparent</groupId> <artifactId>oparent</artifactId> @@ -118,7 +118,7 @@ stated inside of the file. <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> - <mainClass>protocol.PromDaemon</mainClass> + <mainClass>org.onap.music.prom.main.PromDaemon</mainClass> </transformer> </transformers> </configuration> diff --git a/version.properties b/version.properties index e346160..17c4b15 100644 --- a/version.properties +++ b/version.properties @@ -4,7 +4,7 @@ major=1 minor=0 -patch=4 +patch=5 base_version=${major}.${minor}.${patch} |