forked from spring-projects/spring-security
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes spring-projectsgh-9540
- Loading branch information
Showing
30 changed files
with
279 additions
and
279 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
apply plugin: 'io.spring.convention.spring-module' | ||
|
||
dependencies { | ||
compile project(':spring-security-core') | ||
compile 'org.springframework:spring-aop' | ||
compile 'org.springframework:spring-context' | ||
compile 'org.springframework:spring-core' | ||
compile 'org.springframework:spring-jdbc' | ||
compile 'org.springframework:spring-tx' | ||
api project(':spring-security-core') | ||
api 'org.springframework:spring-aop' | ||
api 'org.springframework:spring-context' | ||
api 'org.springframework:spring-core' | ||
api 'org.springframework:spring-jdbc' | ||
api 'org.springframework:spring-tx' | ||
|
||
optional 'net.sf.ehcache:ehcache' | ||
|
||
testCompile 'org.springframework:spring-beans' | ||
testCompile 'org.springframework:spring-context-support' | ||
testCompile 'org.springframework:spring-test' | ||
testImplementation 'org.springframework:spring-beans' | ||
testImplementation 'org.springframework:spring-context-support' | ||
testImplementation 'org.springframework:spring-test' | ||
|
||
testRuntime 'org.hsqldb:hsqldb' | ||
testRuntimeOnly 'org.hsqldb:hsqldb' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
apply plugin: 'io.spring.convention.spring-module' | ||
|
||
dependencies { | ||
compile project(':spring-security-core') | ||
compile project(':spring-security-web') | ||
compile 'org.jasig.cas.client:cas-client-core' | ||
compile 'org.springframework:spring-beans' | ||
compile 'org.springframework:spring-context' | ||
compile 'org.springframework:spring-core' | ||
compile 'org.springframework:spring-web' | ||
api project(':spring-security-core') | ||
api project(':spring-security-web') | ||
api 'org.jasig.cas.client:cas-client-core' | ||
api 'org.springframework:spring-beans' | ||
api 'org.springframework:spring-context' | ||
api 'org.springframework:spring-core' | ||
api 'org.springframework:spring-web' | ||
|
||
optional 'com.fasterxml.jackson.core:jackson-databind' | ||
optional 'net.sf.ehcache:ehcache' | ||
|
||
provided 'javax.servlet:javax.servlet-api' | ||
|
||
testCompile 'org.skyscreamer:jsonassert' | ||
testImplementation 'org.skyscreamer:jsonassert' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
apply plugin: 'io.spring.convention.spring-module' | ||
|
||
dependencies { | ||
compile project(':spring-security-core') | ||
compile 'javax.xml.bind:jaxb-api' | ||
compile 'org.springframework.data:spring-data-commons' | ||
compile 'org.springframework:spring-core' | ||
api project(':spring-security-core') | ||
api 'javax.xml.bind:jaxb-api' | ||
api 'org.springframework.data:spring-data-commons' | ||
api 'org.springframework:spring-core' | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
apply plugin: 'io.spring.convention.spring-test' | ||
|
||
dependencies { | ||
compile project(':spring-security-core') | ||
compile 'org.python:jython' | ||
compile 'org.springframework:spring-aop' | ||
compile 'org.springframework:spring-beans' | ||
compile 'org.springframework:spring-context' | ||
compile 'org.springframework:spring-tx' | ||
implementation project(':spring-security-core') | ||
implementation 'org.python:jython' | ||
implementation 'org.springframework:spring-aop' | ||
implementation 'org.springframework:spring-beans' | ||
implementation 'org.springframework:spring-context' | ||
implementation 'org.springframework:spring-tx' | ||
|
||
testCompile project(':spring-security-web') | ||
testCompile 'javax.servlet:javax.servlet-api' | ||
testCompile 'org.springframework:spring-web' | ||
testImplementation project(':spring-security-web') | ||
testImplementation 'javax.servlet:javax.servlet-api' | ||
testImplementation 'org.springframework:spring-web' | ||
|
||
testRuntime project(':spring-security-config') | ||
testRuntime 'org.aspectj:aspectjweaver' | ||
testRuntimeOnly project(':spring-security-config') | ||
testRuntimeOnly 'org.aspectj:aspectjweaver' | ||
} | ||
|
||
System.setProperty('python.cachedir.skip', 'true') |
18 changes: 9 additions & 9 deletions
18
...mbedded-ldap-apacheds-default/spring-security-itest-ldap-embedded-apacheds-default.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
apply plugin: 'io.spring.convention.spring-test' | ||
|
||
dependencies { | ||
compile project(':spring-security-core') | ||
compile 'org.springframework:spring-beans' | ||
compile 'org.springframework:spring-context' | ||
compile 'org.springframework:spring-core' | ||
compile 'org.springframework:spring-tx' | ||
compile project(':spring-security-config') | ||
compile project(':spring-security-ldap') | ||
implementation project(':spring-security-core') | ||
implementation 'org.springframework:spring-beans' | ||
implementation 'org.springframework:spring-context' | ||
implementation 'org.springframework:spring-core' | ||
implementation 'org.springframework:spring-tx' | ||
implementation project(':spring-security-config') | ||
implementation project(':spring-security-ldap') | ||
|
||
runtime apachedsDependencies | ||
runtimeOnly apachedsDependencies | ||
|
||
testCompile project(path : ':spring-security-ldap', configuration : 'tests') | ||
testImplementation project(path : ':spring-security-ldap', configuration : 'tests') | ||
} |
18 changes: 9 additions & 9 deletions
18
...ldap/embedded-ldap-mode-apacheds/spring-security-itest-ldap-embedded-mode-apacheds.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
apply plugin: 'io.spring.convention.spring-test' | ||
|
||
dependencies { | ||
compile project(':spring-security-core') | ||
compile 'org.springframework:spring-beans' | ||
compile 'org.springframework:spring-context' | ||
compile 'org.springframework:spring-core' | ||
compile 'org.springframework:spring-tx' | ||
compile project(':spring-security-config') | ||
compile project(':spring-security-ldap') | ||
implementation project(':spring-security-core') | ||
implementation 'org.springframework:spring-beans' | ||
implementation 'org.springframework:spring-context' | ||
implementation 'org.springframework:spring-core' | ||
implementation 'org.springframework:spring-tx' | ||
implementation project(':spring-security-config') | ||
implementation project(':spring-security-ldap') | ||
|
||
runtime apachedsDependencies | ||
runtimeOnly apachedsDependencies | ||
|
||
testCompile project(path : ':spring-security-ldap', configuration : 'tests') | ||
testImplementation project(path : ':spring-security-ldap', configuration : 'tests') | ||
} |
16 changes: 8 additions & 8 deletions
16
...ap/embedded-ldap-mode-unboundid/spring-security-itest-ldap-embedded-mode-unboundid.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
apply plugin: 'io.spring.convention.spring-test' | ||
|
||
dependencies { | ||
compile project(':spring-security-core') | ||
compile 'org.springframework:spring-beans' | ||
compile 'org.springframework:spring-context' | ||
compile 'org.springframework:spring-core' | ||
compile 'org.springframework:spring-tx' | ||
compile project(':spring-security-config') | ||
compile project(':spring-security-ldap') | ||
implementation project(':spring-security-core') | ||
implementation 'org.springframework:spring-beans' | ||
implementation 'org.springframework:spring-context' | ||
implementation 'org.springframework:spring-core' | ||
implementation 'org.springframework:spring-tx' | ||
implementation project(':spring-security-config') | ||
implementation project(':spring-security-ldap') | ||
|
||
testCompile "com.unboundid:unboundid-ldapsdk" | ||
testImplementation "com.unboundid:unboundid-ldapsdk" | ||
} |
14 changes: 7 additions & 7 deletions
14
itest/ldap/embedded-ldap-none/spring-security-itest-ldap-embedded-none.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
apply plugin: 'io.spring.convention.spring-test' | ||
|
||
dependencies { | ||
compile project(':spring-security-core') | ||
compile 'org.springframework:spring-beans' | ||
compile 'org.springframework:spring-context' | ||
compile 'org.springframework:spring-core' | ||
compile 'org.springframework:spring-tx' | ||
compile project(':spring-security-config') | ||
compile project(':spring-security-ldap') | ||
implementation project(':spring-security-core') | ||
implementation 'org.springframework:spring-beans' | ||
implementation 'org.springframework:spring-context' | ||
implementation 'org.springframework:spring-core' | ||
implementation 'org.springframework:spring-tx' | ||
implementation project(':spring-security-config') | ||
implementation project(':spring-security-ldap') | ||
} |
Oops, something went wrong.