File tree Expand file tree Collapse file tree 16 files changed +21
-21
lines changed
integration-tests-openldap Expand file tree Collapse file tree 16 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ description = "Exposes gradle buildSrc for IDE support"
2
2
apply plugin : " groovy"
3
3
4
4
dependencies {
5
- compile gradleApi()
6
- compile localGroovy()
5
+ implementation gradleApi()
6
+ implementation localGroovy()
7
7
}
Original file line number Diff line number Diff line change 1
1
2
2
dependencies {
3
- compile project(" :spring-ldap-core" ),
3
+ implementation project(" :spring-ldap-core" ),
4
4
" org.springframework:spring-tx:$springVersion "
5
5
6
6
testCompile " junit:junit:$junitVersion " ,
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ idea.module.excludeDirs = [
9
9
file(' build/libs' )]
10
10
11
11
dependencies {
12
- compile " org.springframework:spring-core:$springVersion " ,
12
+ implementation " org.springframework:spring-core:$springVersion " ,
13
13
" org.springframework:spring-beans:$springVersion " ,
14
14
" org.springframework:spring-tx:$springVersion " ,
15
15
" org.slf4j:slf4j-api:$slf4jVersion "
Original file line number Diff line number Diff line change 1
1
2
2
dependencies {
3
- compile project(' :spring-ldap-ldif-core' ),
3
+ implementation project(' :spring-ldap-ldif-core' ),
4
4
" commons-lang:commons-lang:$commonsLangVersion "
5
5
6
- compile (" org.springframework.batch:spring-batch-infrastructure:$springBatchVersion " ) {
6
+ implementation (" org.springframework.batch:spring-batch-infrastructure:$springBatchVersion " ) {
7
7
exclude group : " org.springframework" , module : " spring-core"
8
8
exclude group : " org.springframework" , module : " spring-context"
9
9
exclude group : " org.springframework" , module : " spring-aop"
Original file line number Diff line number Diff line change 1
1
2
2
dependencies {
3
- compile project(" :spring-ldap-core" )
3
+ implementation project(" :spring-ldap-core" )
4
4
5
5
testCompile " junit:junit:$junitVersion " ,
6
6
" commons-io:commons-io:$commonsIoVersion " ,
Original file line number Diff line number Diff line change 3
3
}
4
4
5
5
dependencies {
6
- compile project(" :spring-ldap-core" ),
6
+ implementation project(" :spring-ldap-core" ),
7
7
project(" :spring-ldap-core-tiger" ),
8
8
" org.springframework:spring-core:$springVersion " ,
9
9
" org.freemarker:freemarker:2.3.20" ,
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
6
6
apply from : JAVA_SCRIPT
7
7
8
8
dependencies {
9
- compile project(' :spring-ldap-test' ),
9
+ implementation project(' :spring-ldap-test' ),
10
10
' javax.servlet:jstl:1.2' ,
11
11
" org.springframework:spring-context:$springVersion " ,
12
12
" org.springframework:spring-webmvc:$springVersion " ,
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
6
6
apply from : JAVA_SCRIPT
7
7
8
8
dependencies {
9
- compile project(' :spring-ldap-test' ),
9
+ implementation project(' :spring-ldap-test' ),
10
10
' javax.servlet:jstl:1.2' ,
11
11
" org.springframework:spring-context:$springVersion " ,
12
12
" org.springframework:spring-webmvc:$springVersion " ,
Original file line number Diff line number Diff line change 1
1
apply from : SAMPLE_WAR_GRADLE
2
2
3
3
dependencies {
4
- compile project(' :spring-ldap-test' ),
4
+ implementation project(' :spring-ldap-test' ),
5
5
' javax.servlet:jstl:1.2' ,
6
6
" org.springframework:spring-context:$springVersion " ,
7
7
" org.springframework:spring-webmvc:$springVersion " ,
Original file line number Diff line number Diff line change 1
1
apply from : JAVA_SCRIPT
2
2
3
3
dependencies {
4
- compile project(" :spring-ldap-core" )
4
+ implementation project(" :spring-ldap-core" )
5
5
6
6
provided " com.sun:ldapbp:1.0"
7
7
Original file line number Diff line number Diff line change 1
1
merge. into = project(" :spring-ldap-test" )
2
2
3
3
dependencies {
4
- compile project(" :spring-ldap-core" ),
4
+ implementation project(" :spring-ldap-core" ),
5
5
project(" :spring-ldap-ldif-core" ),
6
6
" com.google.code.typica:typica:1.3" ,
7
7
" commons-io:commons-io:$commonsIoVersion " ,
Original file line number Diff line number Diff line change 1
1
2
2
dependencies {
3
- compile project(" :spring-ldap-core" ),
3
+ implementation project(" :spring-ldap-core" ),
4
4
project(" :spring-ldap-ldif-core" ),
5
5
" com.google.code.typica:typica:1.3" ,
6
6
" commons-io:commons-io:$commonsIoVersion " ,
Original file line number Diff line number Diff line change 1
1
apply from : JAVA_SCRIPT
2
2
3
3
dependencies {
4
- compile project(" :spring-ldap-test" ),
4
+ implementation project(" :spring-ldap-test" ),
5
5
project(" :spring-ldap-odm" ),
6
6
project(" :spring-ldap-core-tiger" )
7
7
Original file line number Diff line number Diff line change 1
1
apply from : JAVA_SCRIPT
2
2
3
3
dependencies {
4
- compile project(" :spring-ldap-core-tiger" ),
4
+ implementation project(" :spring-ldap-core-tiger" ),
5
5
project(" :spring-ldap-test" ),
6
6
" commons-lang:commons-lang:$commonsLangVersion " ,
7
7
" commons-logging:commons-logging:$commonsLoggingVersion " ,
Original file line number Diff line number Diff line change 1
1
apply from : JAVA_SCRIPT
2
2
3
3
dependencies {
4
- compile project(" :spring-ldap-test" ),
4
+ implementation project(" :spring-ldap-test" ),
5
5
project(" :spring-ldap-integration-tests" ),
6
6
project(" :spring-ldap-sandbox" ),
7
7
project(" :spring-ldap-core-tiger" ),
Original file line number Diff line number Diff line change @@ -23,18 +23,18 @@ sourceSets {
23
23
}
24
24
25
25
dependencies {
26
- compile project(" :spring-ldap-test" ),
26
+ implementation project(" :spring-ldap-test" ),
27
27
project(" :spring-ldap-core-tiger" )
28
28
29
- compile " com.querydsl:querydsl-apt:$queryDslVersion " ,
29
+ implementation " com.querydsl:querydsl-apt:$queryDslVersion " ,
30
30
" commons-lang:commons-lang:$commonsLangVersion "
31
31
32
- compile (" org.springframework.data:spring-data-commons:$springDataVersion " ) {
32
+ implementation (" org.springframework.data:spring-data-commons:$springDataVersion " ) {
33
33
exclude group : " org.springframework" , module : " spring-beans"
34
34
exclude group : " org.springframework" , module : " spring-core"
35
35
}
36
36
37
- compile (" org.springframework.security:spring-security-core:$springSecurityVersion " ) {
37
+ implementation (" org.springframework.security:spring-security-core:$springSecurityVersion " ) {
38
38
exclude group : " org.springframework" , module : " spring-expression"
39
39
exclude group : " org.springframework" , module : " spring-core"
40
40
exclude group : " org.springframework" , module : " spring-context"
You can’t perform that action at this time.
0 commit comments