z3950/z3950-common/build.gradle

22 lines
379 B
Groovy
Raw Permalink Normal View History

2017-11-16 00:37:06 +01:00
plugins {
2023-10-23 17:31:46 +02:00
id 'org.xbib.gradle.plugin.jflex' version '3.0.2'
id 'org.xbib.gradle.plugin.jacc' version '3.0.2'
2017-11-16 00:37:06 +01:00
}
dependencies {
api project(':z3950-api')
api libs.cql.common
2017-11-16 00:37:06 +01:00
}
sourceSets {
main {
java {
2023-10-23 17:31:46 +02:00
srcDirs "build/generated-src"
}
}
2023-10-23 17:31:46 +02:00
}
tasks.named('sourcesJar').configure {
dependsOn('generateJflex', 'generateJacc')
}