Skip to content

Commit 0b1fb31

Browse files
committed
add gradle wrapper
1 parent 60a2d88 commit 0b1fb31

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
.gradle
33
**/build/
44
!gradle/wrapper/gradle-wrapper.jar
5-
**/gradle/
65
gradle.properties
76

87

build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ subprojects {
6464
mavenCentral()
6565
}
6666

67+
tasks.withType<Wrapper> {
68+
gradleVersion = "6.8.2"
69+
// anything else
70+
}
71+
6772
dependencies {
6873
api("org.jetbrains.kotlin:kotlin-reflect")
6974
api("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
@@ -87,7 +92,6 @@ subprojects {
8792
}
8893

8994
if (project.name != "sample") {
90-
println(project.name)
9195
publishing {
9296
repositories {
9397

gradle/wrapper/gradle-wrapper.jar

57.8 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

spring-json-api-starter/src/test/kotlin/io/hndrs/api/autoconfigure/JsonApiAutoConfigurationTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import org.springframework.boot.test.context.runner.WebApplicationContextRunner
1212
internal class JsonApiAutoConfigurationTest {
1313

1414
@Test
15-
fun test() {
15+
fun autoconfiguredBeans() {
1616
WebApplicationContextRunner()
1717
.withConfiguration(
1818
AutoConfigurations.of(JsonApiAutoConfiguration::class.java)

0 commit comments

Comments
 (0)