diff --git a/base/build.gradle b/base/build.gradle index 4cbcd47..0791cab 100644 --- a/base/build.gradle +++ b/base/build.gradle @@ -20,12 +20,12 @@ dependencies { testCompileOnly 'org.jetbrains:annotations:' + project.dependencyJetbrainsAnnotations // JUnit - testImplementation platform('org.junit:junit-bom:5.' + project.dependencyJUnit) + testImplementation platform('org.junit:junit-bom:5.' + project.dependencyJunit) testImplementation 'org.junit.jupiter:junit-jupiter' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' // jOOR - testImplementation 'org.jooq:joor:' + project.dependencyjOOR + testImplementation 'org.jooq:joor:' + project.dependencyJoor } javadoc.options { diff --git a/build.gradle b/build.gradle index f621b1f..c7a24d6 100644 --- a/build.gradle +++ b/build.gradle @@ -9,9 +9,9 @@ dependencies { annotationProcessor 'org.projectlombok:lombok:' + project.dependencyLombok // JUnit - testImplementation platform('org.junit:junit-bom:5.' + project.dependencyJUnit) - testImplementation 'org.junit.jupiter:junit-jupiter:5.' + project.dependencyJUnit - testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.' + project.dependencyJUnit + testImplementation platform('org.junit:junit-bom:5.' + project.dependencyJunit) + testImplementation 'org.junit.jupiter:junit-jupiter:5.' + project.dependencyJunit + testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.' + project.dependencyJunit } tasks.register('javadocAll', Javadoc) { diff --git a/gradle.properties b/gradle.properties index 02c7aca..adb2e89 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,8 +9,8 @@ dependencyLombok=1.18.32 dependencyJetbrainsAnnotations=24.1.0 # Test dependencies -dependencyJUnit=11.0-M2 -dependencyjOOR=0.9.14 +dependencyJunit=11.0-M2 +dependencyJoor=0.9.14 # Subsystem dependencies dependencyJansi=2.4.1