Skip to content

Commit

Permalink
TNG#415 correctly integrate gradle wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
leimer committed May 15, 2020
1 parent b58700f commit 1974cf9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 2 deletions.
1 change: 0 additions & 1 deletion example-projects/spring-boot/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
gradle
.gradle/
*.ipr
*.iws
Expand Down
2 changes: 1 addition & 1 deletion example-projects/spring-boot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

This project shows how to use JGiven with Spring Boot

1. Run `gradle build`
1. Run `./gradlew build`
2. Open `build/reports/jgiven/test/html/index.html`

5 changes: 5 additions & 0 deletions example-projects/spring-boot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ targetCompatibility = 1.8

version = '1.0'

wrapper {
gradleVersion = '6.0.1'
distributionType = Wrapper.DistributionType.ALL
}

repositories {
mavenLocal()
jcenter()
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 1974cf9

Please sign in to comment.