mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-01-29 00:50:12 +07:00
33caecc32c
Changed signatures of TsvParser and renamed to ParserInput Removed Parser#hasNext Implemented Table#recordClass() TableCodeGenerator generates a public constructor
13 lines
421 B
Groovy
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"
|
|
}
|