diff options
-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} |