@@ -299,10 +299,14 @@ project('spring-batch-core') {
299
299
testCompile " javax.inject:javax.inject:$javaxInjectVersion "
300
300
testCompile " org.hsqldb:hsqldb:$hsqldbVersion "
301
301
testCompile " com.h2database:h2:$h2databaseVersion "
302
+ testCompile " org.apache.derby:derby:$derbyVersion "
302
303
testCompile " commons-io:commons-io:$commonsIoVersion "
303
304
testCompile " org.apache.commons:commons-dbcp2:$commonsDdbcpVersion "
304
305
testCompile " junit:junit:${ junitVersion} "
305
306
testCompile " org.hamcrest:hamcrest-library:$hamcrestVersion "
307
+ testCompile " org.testcontainers:mysql:$testcontainersVersion "
308
+ testCompile " mysql:mysql-connector-java:$mysqlVersion "
309
+
306
310
optional " com.ibm.jbatch:com.ibm.jbatch-tck-spi:$jbatchTckSpi "
307
311
optional " com.thoughtworks.xstream:xstream:$xstreamVersion "
308
312
optional " org.aspectj:aspectjrt:$aspectjVersion "
@@ -417,44 +421,6 @@ project('spring-batch-docs') {
417
421
description = ' Spring Batch Docs'
418
422
}
419
423
420
- project(' spring-batch-core-tests' ) {
421
- description = ' Spring Batch Core Tests'
422
- project. tasks. findByPath(" artifactoryPublish" )?. enabled = false
423
- dependencies {
424
- compile project(" :spring-batch-core" )
425
- compile project(" :spring-batch-infrastructure" )
426
- compile " org.apache.commons:commons-dbcp2:$commonsDdbcpVersion "
427
- compile " org.springframework:spring-jdbc:$springVersion "
428
- compile " org.springframework.retry:spring-retry:$springRetryVersion "
429
- compile " org.springframework:spring-tx:$springVersion "
430
- compile " org.springframework:spring-aop:$springVersion "
431
-
432
- testCompile " org.hsqldb:hsqldb:$hsqldbVersion "
433
- testCompile " commons-io:commons-io:$commonsIoVersion "
434
- testCompile " org.apache.derby:derby:$derbyVersion "
435
- testCompile " junit:junit:${ junitVersion} "
436
- testCompile " org.hamcrest:hamcrest-library:$hamcrestVersion "
437
- testCompile " org.apache.logging.log4j:log4j-api:$log4jVersion "
438
- testCompile " org.apache.logging.log4j:log4j-core:$log4jVersion "
439
- testCompile " org.springframework:spring-test:$springVersion "
440
- testCompile " org.springframework:spring-jdbc:$springVersion "
441
- testCompile " org.testcontainers:mysql:$testcontainersVersion "
442
- testCompile " mysql:mysql-connector-java:$mysqlVersion "
443
-
444
- runtime " org.postgresql:postgresql:$postgresqlVersion "
445
- runtime " javax.batch:javax.batch-api:$javaxBatchApiVersion "
446
-
447
- optional " org.aspectj:aspectjrt:$aspectjVersion "
448
- optional " org.aspectj:aspectjweaver:$aspectjVersion "
449
- optional " org.springframework.ldap:spring-ldap-core:$springLdapVersion "
450
- optional " org.springframework.ldap:spring-ldap-core-tiger:$springLdapVersion "
451
- optional " org.springframework.ldap:spring-ldap-ldif-core:$springLdapVersion "
452
- }
453
- test {
454
- enabled = project. hasProperty(' alltests' )
455
- }
456
- }
457
-
458
424
// Domain for batch job testing
459
425
project(' spring-batch-test' ) {
460
426
description = ' Spring Batch Test'
0 commit comments