Gradle compile->implementation
Issue gh-610
This commit is contained in:
@@ -2,6 +2,6 @@ description = "Exposes gradle buildSrc for IDE support"
|
||||
apply plugin: "groovy"
|
||||
|
||||
dependencies {
|
||||
compile gradleApi()
|
||||
compile localGroovy()
|
||||
implementation gradleApi()
|
||||
implementation localGroovy()
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
dependencies {
|
||||
compile project(":spring-ldap-core"),
|
||||
implementation project(":spring-ldap-core"),
|
||||
"org.springframework:spring-tx:$springVersion"
|
||||
|
||||
testCompile "junit:junit:$junitVersion",
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
dependencies {
|
||||
compile project(":spring-ldap-core")
|
||||
implementation project(":spring-ldap-core")
|
||||
|
||||
testCompile "junit:junit:$junitVersion",
|
||||
"commons-io:commons-io:$commonsIoVersion",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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")
|
||||
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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"),
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user