diff options
author | 2019-04-15 15:55:31 -0400 | |
---|---|---|
committer | 2019-04-15 20:05:30 +0000 | |
commit | 393c8e8b3e0c65c0a263410ab29110b4cdc4dc61 (patch) | |
tree | c2c1cf4d16a4dd0191439a6447dcc12601929caf | |
parent | 5d5e572ec3c0354d326c6c03f80cd0b6fc2216b8 (diff) |
set mmagenthome for logs
Issue-ID: DMAAP-1139
Change-Id: I68e2829cf1a228e9855c41e190b6f4008b72369c
Signed-off-by: sunil.unnava <sunil.unnava@att.com>
-rw-r--r-- | pom.xml | 4 | ||||
-rw-r--r-- | src/main/docker/Dockerfile | 1 | ||||
-rw-r--r-- | version.properties | 4 |
3 files changed, 5 insertions, 4 deletions
@@ -21,7 +21,7 @@ <groupId>org.onap.dmaap.kafka</groupId> <artifactId>kafka11aaf</artifactId> - <version>0.0.6-SNAPSHOT</version> + <version>1.0.0-SNAPSHOT</version> <name>dmaap-kafka</name> <licenses> <license> @@ -152,7 +152,7 @@ <artifactItem> <groupId>org.onap.dmaap.messagerouter.mirroragent</groupId> <artifactId>dmaapMMAgent</artifactId> - <version>1.1.1</version> + <version>1.1.2</version> <destFileName>dmaapMMAgent.jar</destFileName> </artifactItem> </artifactItems> diff --git a/src/main/docker/Dockerfile b/src/main/docker/Dockerfile index 568b10d..4a18779 100644 --- a/src/main/docker/Dockerfile +++ b/src/main/docker/Dockerfile @@ -32,6 +32,7 @@ ADD create-topics.sh /usr/bin/create-topics.sh ADD start-kafkaOrMirrorMaker.sh /usr/bin/start-kafkaOrMirrorMaker.sh ADD start-mirrormaker.sh /usr/bin/start-mirrormaker.sh RUN mkdir /opt/logs +RUN touch /opt/logs/mmagent.log # The scripts need to have executable permission RUN chmod a+x /usr/bin/start-kafka.sh && \ chmod a+x /usr/bin/broker-list.sh && \ diff --git a/version.properties b/version.properties index e23474c..65e7bbc 100644 --- a/version.properties +++ b/version.properties @@ -24,9 +24,9 @@ # Note that these variables cannot be structured (e.g. : version.release or version.snapshot etc... ) # because they are used in Jenkins, whose plug-in doesn't support -major=0 +major=1 minor=0 -patch=6 +patch=0 base_version=${major}.${minor}.${patch} |