Add integration-tests-sunone to build

Issue gh-610
This commit is contained in:
Josh Cummings
2022-01-12 11:57:28 -07:00
parent 43f52ad379
commit 7040f28adc
3 changed files with 19 additions and 14 deletions

View File

@@ -40,6 +40,7 @@ dependencies {
api "commons-io:commons-io:2.11.0"
api "commons-lang:commons-lang:2.6"
api "commons-logging:commons-logging:1.2"
api "commons-pool:commons-pool:1.4"
api "gsbase:gsbase:2.0.1"
api "io.mockk:mockk:1.12.0"
api "jakarta.annotation:jakarta.annotation-api:2.0.0"

View File

@@ -33,7 +33,7 @@ include 'test/integration-tests'
//include 'test/integration-tests-spring25'
//include 'test/integration-tests-spring30'
include 'test/integration-tests-openldap'
//include 'test/integration-tests-sunone'
include 'test/integration-tests-sunone'
//include 'test/integration-tests-ad'
//include 'samples/plain'
//include 'samples/odm'

View File

@@ -1,21 +1,25 @@
apply plugin: 'io.spring.convention.spring-test'
dependencies {
implementation project(":spring-ldap-test"),
project(":spring-ldap-integration-tests"),
project(":spring-ldap-sandbox"),
project(":spring-ldap-core-tiger"),
"commons-pool:commons-pool:1.4"
management platform(project(":spring-ldap-dependencies"))
implementation project(":spring-ldap-test")
implementation project(":spring-ldap-integration-tests")
implementation project(":spring-ldap-sandbox")
implementation project(":spring-ldap-core-tiger")
implementation "commons-pool:commons-pool"
provided "org.springframework:spring-jdbc",
"com.sun:ldapbp:1.0"
provided "org.springframework:spring-jdbc"
provided "com.sun:ldapbp:1.0"
testImplementation "junit:junit",
"org.springframework:spring-aop",
"org.springframework:spring-aop",
"gsbase:gsbase",
"org.slf4j:slf4j-log4j12",
"org.assertj:assertj-core"
testImplementation platform('org.junit:junit-bom')
testImplementation "org.junit.vintage:junit-vintage-engine"
testImplementation "junit:junit"
testImplementation "org.springframework:spring-aop"
testImplementation "org.springframework:spring-aop"
testImplementation "gsbase:gsbase"
testImplementation "org.slf4j:slf4j-log4j12"
testImplementation "org.assertj:assertj-core"
}