diff --git a/.gitignore b/.gitignore index c2065bc..2bff8a4 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,5 @@ out/ ### VS Code ### .vscode/ + +.DS_Store \ No newline at end of file diff --git a/README.md b/README.md index bad1e75..e44c2f0 100644 --- a/README.md +++ b/README.md @@ -1 +1,4 @@ # gradle-sample-module-example + +- Sprin boot included +- Sub-module for gradle and spring \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 6e7e4d7..f04c89b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,7 +6,7 @@ plugins { } dependencies { - implementation(project(":cubetiq-utils")) + api(project(":cubetiq-utils")) implementation("org.springframework.boot:spring-boot-starter-web") implementation("com.fasterxml.jackson.module:jackson-module-kotlin") @@ -14,9 +14,7 @@ dependencies { implementation(kotlin("reflect")) implementation(kotlin("stdlib-jdk8")) - testImplementation("org.springframework.boot:spring-boot-starter-test") { - exclude(group = "org.junit.vintage", module = "junit-vintage-engine") - } + testImplementation("org.springframework.boot:spring-boot-starter-test") } tasks.withType { diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 12d38de..2a56324 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists