diff --git a/archunit-3rd-party-test/build.gradle b/archunit-3rd-party-test/build.gradle index 90ff8bf6f5..b652a1a8b2 100644 --- a/archunit-3rd-party-test/build.gradle +++ b/archunit-3rd-party-test/build.gradle @@ -7,9 +7,9 @@ ext.moduleName = 'com.tngtech.archunit.thirdpartytest' dependencies { testImplementation project(path: ':archunit', configuration: 'shadow') testImplementation project(path: ':archunit', configuration: 'tests') - testImplementation dependency.springBootLoader + testImplementation libs.springBootLoader dependency.addGuava { dependencyNotation, config -> testImplementation(dependencyNotation, config) } - testImplementation dependency.junit4 - testImplementation dependency.junit_dataprovider - testImplementation dependency.assertj + testImplementation libs.junit4 + testImplementation libs.junit.dataprovider + testImplementation libs.assertj } diff --git a/archunit-example/example-plain/build.gradle b/archunit-example/example-plain/build.gradle index cec9903a34..256e5319de 100644 --- a/archunit-example/example-plain/build.gradle +++ b/archunit-example/example-plain/build.gradle @@ -9,7 +9,7 @@ dependencies { // we still use JUnit 4 as the test runner, but we don't use JUnit 4 support within this project // so tests could well be run using TestNG, etc. - testImplementation dependency.junit4 + testImplementation libs.junit4 } test { diff --git a/archunit-integration-test/build.gradle b/archunit-integration-test/build.gradle index 28032ef4a1..50cb2c18f9 100644 --- a/archunit-integration-test/build.gradle +++ b/archunit-integration-test/build.gradle @@ -7,8 +7,8 @@ ext.moduleName = 'com.tngtech.archunit.integrationtest' ext.minimumJavaVersion = JavaVersion.VERSION_1_8 dependencies { - testImplementation dependency.junitPlatform - testImplementation dependency.assertj + testImplementation libs.junitPlatform + testImplementation libs.assertj testImplementation project(path: ':archunit', configuration: 'tests') testImplementation project(path: ':archunit-junit4') testImplementation project(path: ':archunit-junit5-api') diff --git a/archunit-junit/build.gradle b/archunit-junit/build.gradle index a449537e66..fe367e78d2 100644 --- a/archunit-junit/build.gradle +++ b/archunit-junit/build.gradle @@ -36,25 +36,16 @@ artifacts { dependencies { archJunitApi project(path: ':archunit', configuration: 'shadow') dependency.addGuava { dependencyNotation, config -> implementation(dependencyNotation, config) } - implementation dependency.slf4j - - testImplementation dependency.junit4 - testImplementation dependency.junit_dataprovider - testImplementation dependency.mockito - testImplementation dependency.assertj - testImplementation(dependency.assertj_guava) { - exclude module: 'assertj-core' - exclude module: 'guava' - } + + testImplementation libs.junit4 + testImplementation libs.junit.dataprovider + testImplementation libs.mockito + testImplementation libs.assertj testImplementation project(path: ':archunit', configuration: 'tests') // This is a hack for running tests with IntelliJ instead of delegating to Gradle, // because for some reason this dependency cannot be resolved otherwise :-( - testRuntimeOnly dependency.asm -} - -archUnitTest { - providesTestJar = true + testRuntimeOnly libs.asm } shadowJar { @@ -62,7 +53,7 @@ shadowJar { dependencies { exclude(project(':archunit')) - exclude(dependency(dependency.slf4j)) + exclude(dependency("${libs.slf4j.get()}")) } } diff --git a/archunit-junit/junit4/build.gradle b/archunit-junit/junit4/build.gradle index b84799d800..c27182d8fe 100644 --- a/archunit-junit/junit4/build.gradle +++ b/archunit-junit/junit4/build.gradle @@ -7,25 +7,18 @@ ext.moduleName = 'com.tngtech.archunit.junit4' dependencies { api project(path: ':archunit', configuration: 'shadow') api project(path: ':archunit-junit', configuration: 'archJunitApi') - api dependency.junit4 + api libs.junit4 implementation project(path: ':archunit-junit', configuration: 'shadow') dependency.addGuava { dependencyNotation, config -> implementation(dependencyNotation, config) } - implementation dependency.slf4j - - testImplementation dependency.junit4 - testImplementation dependency.junit_dataprovider - testImplementation dependency.mockito - testImplementation dependency.assertj - testImplementation(dependency.assertj_guava) { - exclude module: 'assertj-core' - exclude module: 'guava' - } + + testImplementation libs.junit4 + testImplementation libs.mockito + testImplementation libs.assertj testImplementation project(path: ':archunit', configuration: 'tests') - testImplementation project(path: ':archunit-junit', configuration: 'tests') // This is a hack for running tests with IntelliJ instead of delegating to Gradle, // because for some reason this dependency cannot be resolved otherwise :-( - testRuntimeOnly dependency.asm + testRuntimeOnly libs.asm } javadoc { @@ -42,9 +35,9 @@ shadowJar { dependencies { exclude(project(':archunit')) - exclude(dependency(dependency.junit4)) - exclude(dependency(dependency.slf4j)) - exclude(dependency(dependency.hamcrest)) // Shadow doesn't respect transitive excludes :-( + exclude(dependency("${libs.junit4.get()}")) + exclude(dependency("${libs.slf4j.get()}")) + exclude(dependency("${libs.hamcrest.get()}")) // Shadow doesn't respect transitive excludes :-( } } diff --git a/archunit-junit/junit5/api/build.gradle b/archunit-junit/junit5/api/build.gradle index 369cc510bb..a5ba74a134 100644 --- a/archunit-junit/junit5/api/build.gradle +++ b/archunit-junit/junit5/api/build.gradle @@ -9,7 +9,7 @@ ext.minimumJavaVersion = JavaVersion.VERSION_1_8 dependencies { api project(path: ':archunit') api project(path: ':archunit-junit', configuration: 'archJunitApi') - api dependency.junitPlatformCommons + api libs.junitPlatformCommons } javadoc { @@ -23,8 +23,7 @@ shadowJar { exclude 'META-INF/maven/**' dependencies { - exclude(project(':archunit')) - exclude(dependency { it.name != dependency.guava && !it.name.contains('archunit-junit') }) + exclude(dependency { !it.name.contains('archunit-junit') }) } } diff --git a/archunit-junit/junit5/engine-api/build.gradle b/archunit-junit/junit5/engine-api/build.gradle index dffc0e57e2..210e95230f 100644 --- a/archunit-junit/junit5/engine-api/build.gradle +++ b/archunit-junit/junit5/engine-api/build.gradle @@ -7,15 +7,11 @@ ext.moduleName = 'com.tngtech.archunit.junit5.engineapi' ext.minimumJavaVersion = JavaVersion.VERSION_1_8 dependencies { - api dependency.junitPlatformEngine + api libs.junitPlatformEngine implementation project(path: ':archunit') - dependency.addGuava { dependencyNotation, config -> implementation(dependencyNotation, config) } - implementation dependency.slf4j testImplementation project(path: ':archunit-junit5-api') - testImplementation project(path: ':archunit', configuration: 'tests') - testImplementation dependency.assertj - testImplementation dependency.mockito + testImplementation libs.assertj } compileJava.dependsOn project(':archunit-junit5-api').finishArchive @@ -30,7 +26,7 @@ shadowJar { exclude 'META-INF/maven/**' dependencies { - exclude(dependency { it.name != dependency.guava }) + exclude(dependency { true }) } } diff --git a/archunit-junit/junit5/engine/build.gradle b/archunit-junit/junit5/engine/build.gradle index 8100031f2d..5678ce96fd 100644 --- a/archunit-junit/junit5/engine/build.gradle +++ b/archunit-junit/junit5/engine/build.gradle @@ -12,13 +12,12 @@ dependencies { api project(path: ':archunit-junit5-engine-api') implementation project(path: ':archunit-junit') dependency.addGuava { dependencyNotation, config -> implementation(dependencyNotation, config) } - implementation dependency.slf4j testImplementation project(path: ':archunit', configuration: 'tests') - testImplementation dependency.assertj - testImplementation dependency.mockito - testImplementation dependency.mockito_junit5 - testImplementation dependency.log4j_core + testImplementation libs.assertj + testImplementation libs.mockito + testImplementation libs.mockito.junit5 + testImplementation libs.log4j.core } gradle.projectsEvaluated { @@ -45,7 +44,7 @@ shadowJar { dependencies { exclude(dependency { def isApi = it.configuration == 'archJunitApi' - def isUnwantedDependency = it.name != dependency.guava && it.moduleName != 'archunit-junit' + def isUnwantedDependency = it.moduleName != 'archunit-junit' isUnwantedDependency || isApi }) } diff --git a/archunit-maven-test/build.gradle b/archunit-maven-test/build.gradle index ca74c13ce0..10e9bfa466 100644 --- a/archunit-maven-test/build.gradle +++ b/archunit-maven-test/build.gradle @@ -212,7 +212,7 @@ List integrationTestConfigs = [ ) ] -def vintageEngine = dependency.junit5VintageEngine +def vintageEngine = libs.junit5VintageEngine.get() integrationTestConfigs << new IntegrationTestConfig( javaVersion: integrationTestJavaVersion, testType: TestType.JUNIT5, diff --git a/archunit/build.gradle b/archunit/build.gradle index 16a18ff1d0..a1d54c5e92 100644 --- a/archunit/build.gradle +++ b/archunit/build.gradle @@ -5,17 +5,17 @@ plugins { ext.moduleName = 'com.tngtech.archunit' dependencies { - api dependency.slf4j - implementation dependency.asm + api libs.slf4j + implementation libs.asm dependency.addGuava { dependencyNotation, config -> implementation(dependencyNotation, config) } - testImplementation dependency.log4j_api - testImplementation dependency.log4j_core - testImplementation dependency.junit4 - testImplementation dependency.junit_dataprovider - testImplementation dependency.mockito - testImplementation dependency.assertj - testImplementation(dependency.assertj_guava) { + testImplementation libs.log4j.api + testImplementation libs.log4j.core + testImplementation libs.junit4 + testImplementation libs.junit.dataprovider + testImplementation libs.mockito + testImplementation libs.assertj + testImplementation(libs.assertj.guava) { exclude module: 'assertj-core' exclude module: 'guava' } @@ -25,7 +25,7 @@ shadowJar { exclude 'META-INF/**' dependencies { - exclude(dependency(dependency.slf4j)) + exclude(dependency("${libs.slf4j.get()}")) } } diff --git a/archunit/src/test/java/com/tngtech/archunit/core/importer/ClassFileImporterSlowTest.java b/archunit/src/test/java/com/tngtech/archunit/core/importer/ClassFileImporterSlowTest.java index c449bc3b01..e2df9af475 100644 --- a/archunit/src/test/java/com/tngtech/archunit/core/importer/ClassFileImporterSlowTest.java +++ b/archunit/src/test/java/com/tngtech/archunit/core/importer/ClassFileImporterSlowTest.java @@ -35,6 +35,13 @@ @Category(Slow.class) public class ClassFileImporterSlowTest { + /** + * Importing the full classpath may give thousands of classes in {@link sun} and (especially for Java 8) {@link com.sun} packages. + * Importing those would increase the memory footprint of the test tremendously, but not give an additional benefit for the test, + * so they are excluded for convenience. + */ + private static final ImportOption EXCLUDE_SUN_PACKAGES = l -> !l.contains("/sun/"); + @Rule public final TransientCopyRule copyRule = new TransientCopyRule(); @Rule @@ -53,6 +60,7 @@ public void imports_the_classpath_without_archives() { assertThatTypes(classes).doNotContain(File.class); // Default does not import JDK classes classes = new ClassFileImporter() + .withImportOption(EXCLUDE_SUN_PACKAGES) .withImportOption(importJavaBaseOrRtAndJUnitJarAndFilesOnTheClasspath()) .importClasspath(); @@ -73,10 +81,12 @@ public void imports_the_classpath_using_multiple_ImportOptions() { @Test public void importing_the_default_package_equals_importing_the_classpath() { Set classNamesOfDefaultPackageImport = new ClassFileImporter() + .withImportOption(EXCLUDE_SUN_PACKAGES) .withImportOption(importJavaBaseOrRtAndJUnitJarAndFilesOnTheClasspath()) .importPackages("") .stream().map(JavaClass::getName).collect(toSet()); Set classNamesOfClasspathImport = new ClassFileImporter() + .withImportOption(EXCLUDE_SUN_PACKAGES) .withImportOption(importJavaBaseOrRtAndJUnitJarAndFilesOnTheClasspath()) .importClasspath() .stream().map(JavaClass::getName).collect(toSet()); @@ -180,6 +190,7 @@ public void creates_JavaPackages() { private JavaClasses importJavaBase() { return new ClassFileImporter() + .withImportOption(EXCLUDE_SUN_PACKAGES) .withImportOption(location -> // before Java 9 packages like java.lang were in rt.jar location.contains("rt.jar") || diff --git a/build.gradle b/build.gradle index 28f989234f..927090a54a 100644 --- a/build.gradle +++ b/build.gradle @@ -35,48 +35,14 @@ ext { googleRelocationPackage = "${thirdPartyRelocationPackage}.com.google" dependency = [ - asm : [group: 'org.ow2.asm', name: 'asm', version: '9.7.1'], - guava : [group: 'com.google.guava', name: 'guava', version: '33.3.1-jre'], - addGuava : { dependencyHandler -> - dependencyHandler(dependency.guava) { + addGuava : { dependencyHandler -> + dependencyHandler(libs.guava) { exclude module: 'listenablefuture' - exclude module: 'jsr305' - exclude module: 'checker-qual' + exclude module: 'jspecify' exclude module: 'error_prone_annotations' exclude module: 'j2objc-annotations' } }, - slf4j : [group: 'org.slf4j', name: 'slf4j-api', version: '2.0.16'], - log4j_api : [group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.24.1'], - log4j_core : [group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.24.1'], - log4j_slf4j : [group: 'org.apache.logging.log4j', name: 'log4j-slf4j2-impl', version: '2.24.1'], - - junit4 : [group: 'junit', name: 'junit', version: '4.13.2'], - junit5JupiterApi : [group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.11.2'], - junit5JupiterEngine : [group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.11.2'], - junit5VintageEngine : [group: 'org.junit.vintage', name: 'junit-vintage-engine', version: '5.11.2'], - junitPlatform : [group: 'org.junit.platform', name: 'junit-platform-runner', version: '1.11.2'], - junitPlatformCommons: [group: 'org.junit.platform', name: 'junit-platform-commons', version: '1.11.2'], - junitPlatformEngine : [group: 'org.junit.platform', name: 'junit-platform-engine', version: '1.11.2'], - hamcrest : [group: 'org.hamcrest', name: 'hamcrest-core', version: '1.3'], - junit_dataprovider : [group: 'com.tngtech.java', name: 'junit-dataprovider', version: '1.11.0'], - mockito : [group: 'org.mockito', name: 'mockito-core', version: '4.11.0'], // mockito 5 requires Java 11 - mockito_junit5 : [group: 'org.mockito', name: 'mockito-junit-jupiter', version: '4.6.1'], - assertj : [group: 'org.assertj', name: 'assertj-core', version: '3.26.3'], - assertj_guava : [group: 'org.assertj', name: 'assertj-guava', version: '3.26.3'], - - // Dependencies for example projects / tests - javaxAnnotationApi : [group: 'javax.annotation', name: 'javax.annotation-api', version: '1.3.2'], - springBeans : [group: 'org.springframework', name: 'spring-beans', version: '5.3.23'], - springBootLoader : [group: 'org.springframework.boot', name: 'spring-boot-loader', version: '2.7.13'], - jakartaInject : [group: 'jakarta.inject', name: 'jakarta.inject-api', version: '2.0.1'], - jakartaAnnotations : [group: 'jakarta.annotation', name: 'jakarta.annotation-api', version: '2.1.1'], - guice : [group: 'com.google.inject', name: 'guice', version: '5.1.0'], - // NOTE: The pure javaee-api dependencies are crippled, so to run any test we need to choose a full implementation provider - geronimoEjb : [group: 'org.apache.geronimo.specs', name: 'geronimo-ejb_3.1_spec', version: '1.0.2'], - geronimoJpa : [group: 'org.apache.geronimo.specs', name: 'geronimo-jpa_2.0_spec', version: '1.1'], - jodaTime : [group: 'joda-time', name: 'joda-time', version: '2.12.7'], - joox : [group: 'org.jooq', name: 'joox-java-6', version: '1.6.0'] ] minSupportedJavaVersion = JavaVersion.VERSION_1_8 diff --git a/buildSrc/src/main/groovy/archunit.java-examples-conventions.gradle b/buildSrc/src/main/groovy/archunit.java-examples-conventions.gradle index 1d00e5ea80..3e9843c460 100644 --- a/buildSrc/src/main/groovy/archunit.java-examples-conventions.gradle +++ b/buildSrc/src/main/groovy/archunit.java-examples-conventions.gradle @@ -11,14 +11,14 @@ archUnitTest { } rootProject.ext.archUnitExamplesMainDependencies = [ - dependency.jodaTime, - dependency.javaxAnnotationApi, - dependency.jakartaInject, - dependency.jakartaAnnotations, - dependency.springBeans, - dependency.guice, - dependency.geronimoEjb, - dependency.geronimoJpa + libs.jodaTime, + libs.javaxAnnotationApi, + libs.jakartaInject, + libs.jakartaAnnotations, + libs.springBeans, + libs.guice, + libs.geronimoEjb, + libs.geronimoJpa ] dependencies { diff --git a/buildSrc/src/main/groovy/archunit.java-release-check-conventions.gradle b/buildSrc/src/main/groovy/archunit.java-release-check-conventions.gradle index 6ee53b462a..ee4bd8480c 100644 --- a/buildSrc/src/main/groovy/archunit.java-release-check-conventions.gradle +++ b/buildSrc/src/main/groovy/archunit.java-release-check-conventions.gradle @@ -17,7 +17,8 @@ task ensureReleaseCheckUpToDate { } releaseCheckDependencies.each { releaseCheckDependency -> - def matchingProjectDependency = dependency.values().find { + def versionCatalog = versionCatalogs.named("libs") + def matchingProjectDependency = versionCatalog.libraryAliases.collect { versionCatalog.findLibrary(it).get().get() }.find { it.group == releaseCheckDependency.groupId && it.name == releaseCheckDependency.artifactId } assert matchingProjectDependency != null: diff --git a/buildSrc/src/main/groovy/archunit.java-testing-conventions.gradle b/buildSrc/src/main/groovy/archunit.java-testing-conventions.gradle index 562f0ee7ed..8dcd5ccd64 100644 --- a/buildSrc/src/main/groovy/archunit.java-testing-conventions.gradle +++ b/buildSrc/src/main/groovy/archunit.java-testing-conventions.gradle @@ -9,11 +9,11 @@ abstract class ArchUnitTestExtension { ext.archUnitTest = extensions.create('archUnitTest', ArchUnitTestExtension) dependencies { - testImplementation dependency.junit5JupiterApi + testImplementation libs.junit5Jupiter - testRuntimeOnly dependency.junit5JupiterEngine - testRuntimeOnly dependency.junit5VintageEngine - testRuntimeOnly dependency.log4j_slf4j + testRuntimeOnly libs.junit5VintageEngine + testRuntimeOnly libs.junitPlatformLauncher + testRuntimeOnly libs.log4j.slf4j } tasks.withType(Test) { diff --git a/buildSrc/src/main/groovy/archunit.license-conventions.gradle b/buildSrc/src/main/groovy/archunit.license-conventions.gradle index 7428af7e81..921f6e71bd 100644 --- a/buildSrc/src/main/groovy/archunit.license-conventions.gradle +++ b/buildSrc/src/main/groovy/archunit.license-conventions.gradle @@ -8,12 +8,12 @@ def fillTemplateFile = { String resourceName -> replace('${owner}', "${company.name}") } -def pomOf = { Map dep -> - "${dep.group}:${dep.name}:${dep.version}@pom" +def pomOf = { MinimalExternalModuleDependency dep, nameSuffix = "" -> + "${dep.module.group}:${dep.module.name}${nameSuffix}:${dep.version}@pom" } -def parentPomOf = { Map dep -> - pomOf(dep + [name: "${dep.name}-parent"]) +def parentPomOf = { MinimalExternalModuleDependency dep -> + pomOf(dep, "-parent") } configurations { @@ -22,8 +22,8 @@ configurations { } dependencies { - thirdpartyAsm pomOf(dependency.asm) - thirdpartyGuava parentPomOf(dependency.guava) + thirdpartyAsm pomOf(libs.asm.get()) + thirdpartyGuava parentPomOf(libs.guava.get()) } def parseLicenseInfoFrom = { config -> diff --git a/buildSrc/src/main/resources/release_check/archunit-junit5-engine-api.pom b/buildSrc/src/main/resources/release_check/archunit-junit5-engine-api.pom index 30f57e3b93..0cf590cb89 100644 --- a/buildSrc/src/main/resources/release_check/archunit-junit5-engine-api.pom +++ b/buildSrc/src/main/resources/release_check/archunit-junit5-engine-api.pom @@ -46,7 +46,7 @@ org.junit.platform junit-platform-engine - 1.11.2 + 1.12.2 compile diff --git a/buildSrc/src/main/resources/release_check/archunit.pom b/buildSrc/src/main/resources/release_check/archunit.pom index b1d97bce2c..f3934c7a8a 100644 --- a/buildSrc/src/main/resources/release_check/archunit.pom +++ b/buildSrc/src/main/resources/release_check/archunit.pom @@ -50,7 +50,7 @@ org.slf4j slf4j-api - 2.0.16 + 2.0.17 compile diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml new file mode 100644 index 0000000000..4fba54dab2 --- /dev/null +++ b/gradle/libs.versions.toml @@ -0,0 +1,39 @@ +[versions] +log4j = "2.24.3" +junit5 = "5.11.2" +junitPlatform = "1.11.2" +assertj = "3.27.3" + +[libraries] +asm = { group = "org.ow2.asm", name = "asm", version = "9.7.1" } +guava = { group = "com.google.guava", name = "guava", version = "33.4.8-jre" } +slf4j = { group = "org.slf4j", name = "slf4j-api", version = "2.0.17" } +log4j_api = { group = "org.apache.logging.log4j", name = "log4j-api", version.ref = "log4j" } +log4j_core = { group = "org.apache.logging.log4j", name = "log4j-core", version.ref = "log4j" } +log4j_slf4j = { group = "org.apache.logging.log4j", name = "log4j-slf4j2-impl", version.ref = "log4j" } +junit4 = { group = "junit", name = "junit", version = "4.13.2" } +junit5Jupiter = { group = "org.junit.jupiter", name = "junit-jupiter", version.ref = "junit5" } +junit5VintageEngine = { group = "org.junit.vintage", name = "junit-vintage-engine", version.ref = "junit5" } +junitPlatform = { group = "org.junit.platform", name = "junit-platform-runner", version.ref = "junitPlatform" } +junitPlatformCommons = { group = "org.junit.platform", name = "junit-platform-commons", version.ref = "junitPlatform" } +junitPlatformEngine = { group = "org.junit.platform", name = "junit-platform-engine", version.ref = "junitPlatform" } +junitPlatformLauncher = { group = "org.junit.platform", name = "junit-platform-launcher", version.ref = "junitPlatform" } +hamcrest = { group = "org.hamcrest", name = "hamcrest-core", version = "1.3" } +junit_dataprovider = { group = "com.tngtech.java", name = "junit-dataprovider", version = "1.11.0" } +mockito = { group = "org.mockito", name = "mockito-core", version = "4.11.0" } # mockito 5 requires Java 11 +mockito_junit5 = { group = "org.mockito", name = "mockito-junit-jupiter", version = "4.6.1" } +assertj = { group = "org.assertj", name = "assertj-core", version.ref = "assertj" } +assertj_guava = { group = "org.assertj", name = "assertj-guava", version.ref = "assertj" } + +# Dependencies for example projects / tests +javaxAnnotationApi = { group = "javax.annotation", name = "javax.annotation-api", version = "1.3.2" } +springBeans = {group = "org.springframework", name = "spring-beans", version = "6.2.12" } +springBootLoader = { group = "org.springframework.boot", name = "spring-boot-loader", version = "2.7.13" } +jakartaInject = { group = "jakarta.inject", name = "jakarta.inject-api", version = "2.0.1" } +jakartaAnnotations = { group = "jakarta.annotation", name = "jakarta.annotation-api", version = "2.1.1" } +guice = { group = "com.google.inject", name = "guice", version = "5.1.0" } +# NOTE: The pure javaee-api dependencies are crippled, so to run any test we need to choose a full implementation provider +geronimoEjb = {group = "org.apache.geronimo.specs", name = "geronimo-ejb_3.1_spec", version = "1.0.2" } +geronimoJpa = { group = "org.apache.geronimo.specs", name = "geronimo-jpa_2.0_spec", version = "1.1" } +jodaTime = { group = "joda-time", name = "joda-time", version = "2.12.7" } +joox = { group = "org.jooq", name = "joox-java-6", version = "1.6.0" }