Skip to content
This repository has been archived by the owner on Dec 18, 2021. It is now read-only.

Commit

Permalink
Update example version to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Stav Shamir authored and Stav Shamir committed Oct 1, 2021
1 parent e3b4a14 commit 93c0a2f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions springwolf-kafka-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

sourceCompatibility = '1.8'
version '0.1.0'
version '0.1.1'


repositories {
Expand Down Expand Up @@ -46,8 +46,8 @@ docker {
}

registryCredentials {
username = System.getProperty('dockerhub.username')
password = System.getProperty('dockerhub.password')
username = project.findProperty('dockerhubUsername') ?: ''
password = project.findProperty('dockerhubPassword') ?: ''
}
}

Expand Down
2 changes: 1 addition & 1 deletion springwolf-kafka-example/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
app:
image: stavshamir/springwolf-kafka-example:0.1.0
image: stavshamir/springwolf-kafka-example:0.1.1
links:
- kafka
environment:
Expand Down

0 comments on commit 93c0a2f

Please sign in to comment.