Gradle compile->implementation

Issue gh-610
This commit is contained in:
Rob Winch
2022-01-07 10:22:32 -06:00
committed by Josh Cummings
parent 8161de02f2
commit 84e4462f58
16 changed files with 21 additions and 21 deletions

View File

@@ -2,6 +2,6 @@ description = "Exposes gradle buildSrc for IDE support"
apply plugin: "groovy"
dependencies {
compile gradleApi()
compile localGroovy()
implementation gradleApi()
implementation localGroovy()
}

View File

@@ -1,6 +1,6 @@
dependencies {
compile project(":spring-ldap-core"),
implementation project(":spring-ldap-core"),
"org.springframework:spring-tx:$springVersion"
testCompile "junit:junit:$junitVersion",

View File

@@ -9,7 +9,7 @@ idea.module.excludeDirs = [
file('build/libs')]
dependencies {
compile "org.springframework:spring-core:$springVersion",
implementation "org.springframework:spring-core:$springVersion",
"org.springframework:spring-beans:$springVersion",
"org.springframework:spring-tx:$springVersion",
"org.slf4j:slf4j-api:$slf4jVersion"

View File

@@ -1,9 +1,9 @@
dependencies {
compile project(':spring-ldap-ldif-core'),
implementation project(':spring-ldap-ldif-core'),
"commons-lang:commons-lang:$commonsLangVersion"
compile("org.springframework.batch:spring-batch-infrastructure:$springBatchVersion") {
implementation("org.springframework.batch:spring-batch-infrastructure:$springBatchVersion") {
exclude group: "org.springframework", module: "spring-core"
exclude group: "org.springframework", module: "spring-context"
exclude group: "org.springframework", module: "spring-aop"

View File

@@ -1,6 +1,6 @@
dependencies {
compile project(":spring-ldap-core")
implementation project(":spring-ldap-core")
testCompile "junit:junit:$junitVersion",
"commons-io:commons-io:$commonsIoVersion",

View File

@@ -3,7 +3,7 @@ jar {
}
dependencies {
compile project(":spring-ldap-core"),
implementation project(":spring-ldap-core"),
project(":spring-ldap-core-tiger"),
"org.springframework:spring-core:$springVersion",
"org.freemarker:freemarker:2.3.20",

View File

@@ -6,7 +6,7 @@ plugins {
apply from: JAVA_SCRIPT
dependencies {
compile project(':spring-ldap-test'),
implementation project(':spring-ldap-test'),
'javax.servlet:jstl:1.2',
"org.springframework:spring-context:$springVersion",
"org.springframework:spring-webmvc:$springVersion",

View File

@@ -6,7 +6,7 @@ plugins {
apply from: JAVA_SCRIPT
dependencies {
compile project(':spring-ldap-test'),
implementation project(':spring-ldap-test'),
'javax.servlet:jstl:1.2',
"org.springframework:spring-context:$springVersion",
"org.springframework:spring-webmvc:$springVersion",

View File

@@ -1,7 +1,7 @@
apply from: SAMPLE_WAR_GRADLE
dependencies {
compile project(':spring-ldap-test'),
implementation project(':spring-ldap-test'),
'javax.servlet:jstl:1.2',
"org.springframework:spring-context:$springVersion",
"org.springframework:spring-webmvc:$springVersion",

View File

@@ -1,7 +1,7 @@
apply from: JAVA_SCRIPT
dependencies {
compile project(":spring-ldap-core")
implementation project(":spring-ldap-core")
provided "com.sun:ldapbp:1.0"

View File

@@ -1,7 +1,7 @@
merge.into = project(":spring-ldap-test")
dependencies {
compile project(":spring-ldap-core"),
implementation project(":spring-ldap-core"),
project(":spring-ldap-ldif-core"),
"com.google.code.typica:typica:1.3",
"commons-io:commons-io:$commonsIoVersion",

View File

@@ -1,6 +1,6 @@
dependencies {
compile project(":spring-ldap-core"),
implementation project(":spring-ldap-core"),
project(":spring-ldap-ldif-core"),
"com.google.code.typica:typica:1.3",
"commons-io:commons-io:$commonsIoVersion",

View File

@@ -1,7 +1,7 @@
apply from: JAVA_SCRIPT
dependencies {
compile project(":spring-ldap-test"),
implementation project(":spring-ldap-test"),
project(":spring-ldap-odm"),
project(":spring-ldap-core-tiger")

View File

@@ -1,7 +1,7 @@
apply from: JAVA_SCRIPT
dependencies {
compile project(":spring-ldap-core-tiger"),
implementation project(":spring-ldap-core-tiger"),
project(":spring-ldap-test"),
"commons-lang:commons-lang:$commonsLangVersion",
"commons-logging:commons-logging:$commonsLoggingVersion",

View File

@@ -1,7 +1,7 @@
apply from: JAVA_SCRIPT
dependencies {
compile project(":spring-ldap-test"),
implementation project(":spring-ldap-test"),
project(":spring-ldap-integration-tests"),
project(":spring-ldap-sandbox"),
project(":spring-ldap-core-tiger"),

View File

@@ -23,18 +23,18 @@ sourceSets {
}
dependencies {
compile project(":spring-ldap-test"),
implementation project(":spring-ldap-test"),
project(":spring-ldap-core-tiger")
compile "com.querydsl:querydsl-apt:$queryDslVersion",
implementation "com.querydsl:querydsl-apt:$queryDslVersion",
"commons-lang:commons-lang:$commonsLangVersion"
compile("org.springframework.data:spring-data-commons:$springDataVersion") {
implementation("org.springframework.data:spring-data-commons:$springDataVersion") {
exclude group: "org.springframework", module: "spring-beans"
exclude group: "org.springframework", module: "spring-core"
}
compile("org.springframework.security:spring-security-core:$springSecurityVersion") {
implementation("org.springframework.security:spring-security-core:$springSecurityVersion") {
exclude group: "org.springframework", module: "spring-expression"
exclude group: "org.springframework", module: "spring-core"
exclude group: "org.springframework", module: "spring-context"