Skip to content

Commit 7492974

Browse files
committed
Streamline Gradle build scripts: using the Spring Dependency Management Plugin to manage dependencies and versions
Closes gh-21
1 parent eceeae1 commit 7492974

File tree

4 files changed

+1
-12
lines changed

4 files changed

+1
-12
lines changed

examples/grace-hibernate5-mongodb/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
group = "examples"
2-
31
dependencies {
42
implementation "org.springframework.boot:spring-boot-starter-logging"
53
implementation "org.springframework.boot:spring-boot-autoconfigure"

examples/grace-mongodb-database-per-tenant/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
group = "examples"
2-
31
dependencies {
42
implementation "org.springframework.boot:spring-boot-starter-logging"
53
implementation "org.springframework.boot:spring-boot-autoconfigure"

examples/grace-mongodb/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
group = "examples"
2-
31
dependencies {
42
implementation "org.springframework.boot:spring-boot-starter-logging"
53
implementation "org.springframework.boot:spring-boot-autoconfigure"
Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
1-
apply plugin: 'org.springframework.boot'
2-
apply plugin: 'io.spring.dependency-management'
3-
4-
group = 'example'
5-
61
dependencies {
72
implementation "org.springframework.boot:spring-boot-starter-web"
83
implementation project(":grace-plugin")
94

105
testImplementation"org.springframework.boot:spring-boot-starter-test"
11-
testImplementation"org.spockframework:spock-core:$spockVersion"
6+
testImplementation"org.spockframework:spock-core"
127
}

0 commit comments

Comments
 (0)