Skip to content

Commit

Permalink
Update gradlew
Browse files Browse the repository at this point in the history
Signed-off-by: Bogdan Vaneev <[email protected]>
  • Loading branch information
Warchant committed May 30, 2019
1 parent 76c36c3 commit fc80fc5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ soramitsu {
# path to output JAR which is going to be dockerized
jar = jar = new File("build/libs/${project.name}-${project.version}.jar")
# manually specified docker tag. if null, automatic versioning based on git is used
# it replaces only 'version' part, e.g. ${name}:${tag}. Example: soramitsu/example:${tag}
tag = "custom-tag"
# to enable dockerPush task, define registry credentials
registry {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ class ExtensionTest extends Specification {
}
group = 'group'
soramitsu {
projectGroup = '${projectGroup}'
docker {
tag = '${tag}'
tag = "${tag}"
jar = new File('${jar}')
registry {}
registry {
}
}
}
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ import org.gradle.testkit.runner.GradleRunner
import org.slf4j.Logger
import org.slf4j.LoggerFactory

import java.util.function.BiConsumer


class GradleProjectExecutor {

Expand Down

0 comments on commit fc80fc5

Please sign in to comment.