Skip to content

Commit fb50270

Browse files
rwinchjzheaux
authored andcommitted
Gradle compile->implementation
Issue gh-610
1 parent 5986297 commit fb50270

File tree

16 files changed

+21
-21
lines changed

16 files changed

+21
-21
lines changed

buildSrc/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ description = "Exposes gradle buildSrc for IDE support"
22
apply plugin: "groovy"
33

44
dependencies {
5-
compile gradleApi()
6-
compile localGroovy()
5+
implementation gradleApi()
6+
implementation localGroovy()
77
}

core-tiger/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
dependencies {
3-
compile project(":spring-ldap-core"),
3+
implementation project(":spring-ldap-core"),
44
"org.springframework:spring-tx:$springVersion"
55

66
testCompile "junit:junit:$junitVersion",

core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ idea.module.excludeDirs = [
99
file('build/libs')]
1010

1111
dependencies {
12-
compile "org.springframework:spring-core:$springVersion",
12+
implementation "org.springframework:spring-core:$springVersion",
1313
"org.springframework:spring-beans:$springVersion",
1414
"org.springframework:spring-tx:$springVersion",
1515
"org.slf4j:slf4j-api:$slf4jVersion"

ldif/ldif-batch/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
dependencies {
3-
compile project(':spring-ldap-ldif-core'),
3+
implementation project(':spring-ldap-ldif-core'),
44
"commons-lang:commons-lang:$commonsLangVersion"
55

6-
compile("org.springframework.batch:spring-batch-infrastructure:$springBatchVersion") {
6+
implementation("org.springframework.batch:spring-batch-infrastructure:$springBatchVersion") {
77
exclude group: "org.springframework", module: "spring-core"
88
exclude group: "org.springframework", module: "spring-context"
99
exclude group: "org.springframework", module: "spring-aop"

ldif/ldif-core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
dependencies {
3-
compile project(":spring-ldap-core")
3+
implementation project(":spring-ldap-core")
44

55
testCompile "junit:junit:$junitVersion",
66
"commons-io:commons-io:$commonsIoVersion",

odm/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ jar {
33
}
44

55
dependencies {
6-
compile project(":spring-ldap-core"),
6+
implementation project(":spring-ldap-core"),
77
project(":spring-ldap-core-tiger"),
88
"org.springframework:spring-core:$springVersion",
99
"org.freemarker:freemarker:2.3.20",

samples/odm/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
apply from: JAVA_SCRIPT
77

88
dependencies {
9-
compile project(':spring-ldap-test'),
9+
implementation project(':spring-ldap-test'),
1010
'javax.servlet:jstl:1.2',
1111
"org.springframework:spring-context:$springVersion",
1212
"org.springframework:spring-webmvc:$springVersion",

samples/plain/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
apply from: JAVA_SCRIPT
77

88
dependencies {
9-
compile project(':spring-ldap-test'),
9+
implementation project(':spring-ldap-test'),
1010
'javax.servlet:jstl:1.2',
1111
"org.springframework:spring-context:$springVersion",
1212
"org.springframework:spring-webmvc:$springVersion",

samples/user-admin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply from: SAMPLE_WAR_GRADLE
22

33
dependencies {
4-
compile project(':spring-ldap-test'),
4+
implementation project(':spring-ldap-test'),
55
'javax.servlet:jstl:1.2',
66
"org.springframework:spring-context:$springVersion",
77
"org.springframework:spring-webmvc:$springVersion",

sandbox/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply from: JAVA_SCRIPT
22

33
dependencies {
4-
compile project(":spring-ldap-core")
4+
implementation project(":spring-ldap-core")
55

66
provided "com.sun:ldapbp:1.0"
77

test-support-unboundid/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
merge.into = project(":spring-ldap-test")
22

33
dependencies {
4-
compile project(":spring-ldap-core"),
4+
implementation project(":spring-ldap-core"),
55
project(":spring-ldap-ldif-core"),
66
"com.google.code.typica:typica:1.3",
77
"commons-io:commons-io:$commonsIoVersion",

test-support/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
dependencies {
3-
compile project(":spring-ldap-core"),
3+
implementation project(":spring-ldap-core"),
44
project(":spring-ldap-ldif-core"),
55
"com.google.code.typica:typica:1.3",
66
"commons-io:commons-io:$commonsIoVersion",

test/integration-tests-ad/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply from: JAVA_SCRIPT
22

33
dependencies {
4-
compile project(":spring-ldap-test"),
4+
implementation project(":spring-ldap-test"),
55
project(":spring-ldap-odm"),
66
project(":spring-ldap-core-tiger")
77

test/integration-tests-openldap/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply from: JAVA_SCRIPT
22

33
dependencies {
4-
compile project(":spring-ldap-core-tiger"),
4+
implementation project(":spring-ldap-core-tiger"),
55
project(":spring-ldap-test"),
66
"commons-lang:commons-lang:$commonsLangVersion",
77
"commons-logging:commons-logging:$commonsLoggingVersion",

test/integration-tests-sunone/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply from: JAVA_SCRIPT
22

33
dependencies {
4-
compile project(":spring-ldap-test"),
4+
implementation project(":spring-ldap-test"),
55
project(":spring-ldap-integration-tests"),
66
project(":spring-ldap-sandbox"),
77
project(":spring-ldap-core-tiger"),

test/integration-tests/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@ sourceSets {
2323
}
2424

2525
dependencies {
26-
compile project(":spring-ldap-test"),
26+
implementation project(":spring-ldap-test"),
2727
project(":spring-ldap-core-tiger")
2828

29-
compile "com.querydsl:querydsl-apt:$queryDslVersion",
29+
implementation "com.querydsl:querydsl-apt:$queryDslVersion",
3030
"commons-lang:commons-lang:$commonsLangVersion"
3131

32-
compile("org.springframework.data:spring-data-commons:$springDataVersion") {
32+
implementation("org.springframework.data:spring-data-commons:$springDataVersion") {
3333
exclude group: "org.springframework", module: "spring-beans"
3434
exclude group: "org.springframework", module: "spring-core"
3535
}
3636

37-
compile("org.springframework.security:spring-security-core:$springSecurityVersion") {
37+
implementation("org.springframework.security:spring-security-core:$springSecurityVersion") {
3838
exclude group: "org.springframework", module: "spring-expression"
3939
exclude group: "org.springframework", module: "spring-core"
4040
exclude group: "org.springframework", module: "spring-context"

0 commit comments

Comments
 (0)