Skip to content

Commit a1a9f99

Browse files
committed
Update streams-metric-exporter to 1.3.0
1 parent 79cb7e4 commit a1a9f99

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.PHONY: image push
2+
all: image
3+
#REPOSITORY=
4+
#WHOAMI=$(shell whoami)
5+
WHOAMI=bmwilli1
6+
IMAGE_VERSION=1.3.0
7+
IMAGE_NAME=streams-metric-exporter
8+
FULL_IMAGE_NAME=${WHOAMI}/${IMAGE_NAME}
9+
DOCKERFILE=Dockerfile
10+
11+
image: ${DOCKERFILE}
12+
docker build -t ${FULL_IMAGE_NAME}:${IMAGE_VERSION} -t ${FULL_IMAGE_NAME}:latest -f ${DOCKERFILE} ..
13+
14+
push: image
15+
docker push ${FULL_IMAGE_NAME}:${IMAGE_VERSION}
16+
docker push ${FULL_IMAGE_NAME}:latest

streams-metric-exporter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ under the License.
2222
<modelVersion>4.0.0</modelVersion>
2323
<groupId>streamsx.jmxclients</groupId>
2424
<artifactId>streams-metric-exporter</artifactId>
25-
<version>1.2.0</version>
25+
<version>1.3.0</version>
2626
<packaging>jar</packaging>
2727

2828
<name>streams-metric-exporter</name>

0 commit comments

Comments
 (0)