mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-01-29 00:50:12 +07:00
13 lines
437 B
Groovy
13 lines
437 B
Groovy
sourceSets.main.java.srcDirs += compileJava.options.annotationProcessorGeneratedSourcesDirectory
|
|
idea.module.generatedSourceDirs += compileJava.options.annotationProcessorGeneratedSourcesDirectory
|
|
|
|
dependencies {
|
|
annotationProcessor project(':table:annotation-processor')
|
|
implementation project(':table:annotation-processor')
|
|
implementation project(':table:annotations')
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation "junit:junit:4.12"
|
|
}
|