riiablo/table/integration/build.gradle
Collin Smith 33caecc32c Updated parser and table code generators
Changed signatures of TsvParser and renamed to ParserInput
Removed Parser#hasNext
Implemented Table#recordClass()
TableCodeGenerator generates a public constructor
2020-12-17 15:38:55 -08:00

13 lines
421 B
Groovy

sourceSets.main.java.srcDirs += compileJava.options.annotationProcessorGeneratedSourcesDirectory
idea.module.generatedSourceDirs += compileJava.options.annotationProcessorGeneratedSourcesDirectory
dependencies {
annotationProcessor project(':table:annotation-processor')
implementation project(':table:core')
implementation project(':table:annotations')
}
dependencies {
testImplementation "junit:junit:4.12"
}