1818val projectUrl by extra(" https://codecrafters.org.cn/JDevKit" )
1919val projectGithubUrl by extra(" https://github.com/CodeCraftersCN/JDevKit" )
2020val globalGroupId by extra(" cn.org.codecrafters" )
21- val globalVersion by extra(" 1.2.3 " )
21+ val globalVersion by extra(" 1.2.2-gradle " )
2222val licenseName by extra(" The Apache License, Version 2.0" )
2323val licenseUrl by extra(" https://www.apache.org/licenses/LICENSE-2.0.txt" )
2424
@@ -37,14 +37,21 @@ subprojects {
3737 val testImplementation by configurations
3838 val compileOnly by configurations
3939 val annotationProcessor by configurations
40+ val testAnnotationProcessor by configurations
41+ val testCompileOnly by configurations
4042
4143 dependencies {
4244 compileOnly(" org.slf4j:slf4j-api:$slf4jVersion " )
4345 compileOnly(" org.projectlombok:lombok:$lombokVersion " )
4446 implementation(" ch.qos.logback:logback-classic:$logbackVersion " )
4547 annotationProcessor(" org.slf4j:slf4j-api:$slf4jVersion " )
4648 annotationProcessor(" org.projectlombok:lombok:$lombokVersion " )
49+
50+ testCompileOnly(" org.slf4j:slf4j-api:$slf4jVersion " )
51+ testCompileOnly(" org.projectlombok:lombok:$lombokVersion " )
4752 testImplementation(" org.junit.jupiter:junit-jupiter:$junitVersion " )
53+ testAnnotationProcessor(" org.slf4j:slf4j-api:$slf4jVersion " )
54+ testAnnotationProcessor(" org.projectlombok:lombok:$lombokVersion " )
4855 }
4956
5057 repositories {
0 commit comments