Updated gradle wrapper to 7.3

This commit is contained in:
Collin Smith 2021-11-30 14:13:04 -08:00
parent bcb6d7973d
commit ef89a85165
4 changed files with 7 additions and 7 deletions

View File

@ -16,7 +16,7 @@ project.ext.generatedSourceDir = file("$buildDir/generated-src/main/java/")
sourceSets.main.java.srcDirs += generatedSourceDir
idea.module.generatedSourceDirs += generatedSourceDir
project.ext.annotationProcessorGeneratedSourcesDirectory = compileJava.options.annotationProcessorGeneratedSourcesDirectory
project.ext.annotationProcessorGeneratedSourcesDirectory = compileJava.options.generatedSourceOutputDirectory
sourceSets.main.java.srcDirs += annotationProcessorGeneratedSourcesDirectory
idea.module.generatedSourceDirs += annotationProcessorGeneratedSourcesDirectory
@ -123,7 +123,7 @@ test {
}
weave {
classesDir = sourceSets.main.java.outputDir
classesDir = sourceSets.main.java.classesDirectory.get().getAsFile()
enableArtemisPlugin = true
enablePooledWeaving = true
generateLinkMutators = true

View File

@ -1,5 +1,5 @@
sourceSets.main.java.srcDirs += compileJava.options.annotationProcessorGeneratedSourcesDirectory
idea.module.generatedSourceDirs += compileJava.options.annotationProcessorGeneratedSourcesDirectory
sourceSets.main.java.srcDirs += compileJava.options.generatedSourceOutputDirectory
idea.module.generatedSourceDirs += compileJava.options.generatedSourceOutputDirectory
dependencies {
annotationProcessor project(':excel:annotation-processor')

View File

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

View File

@ -1,5 +1,5 @@
sourceSets.main.java.srcDirs += compileJava.options.annotationProcessorGeneratedSourcesDirectory
idea.module.generatedSourceDirs += compileJava.options.annotationProcessorGeneratedSourcesDirectory
sourceSets.main.java.srcDirs += compileJava.options.generatedSourceOutputDirectory
idea.module.generatedSourceDirs += compileJava.options.generatedSourceOutputDirectory
dependencies {
annotationProcessor project(':table:annotation-processor')