2019-11-07 15:11:28 -05:00
|
|
|
plugins {
|
2020-04-01 12:32:00 -04:00
|
|
|
id 'org.hibernate.build.xjc'
|
2019-11-07 15:11:28 -05:00
|
|
|
}
|
|
|
|
|
2015-05-19 00:23:35 -04:00
|
|
|
/*
|
|
|
|
* Hibernate, Relational Persistence for Idiomatic Java
|
|
|
|
*
|
|
|
|
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
|
|
|
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
|
|
|
*/
|
2019-11-07 15:11:28 -05:00
|
|
|
import org.apache.tools.ant.filters.ReplaceTokens
|
2018-01-10 16:06:58 -05:00
|
|
|
|
2020-04-06 13:21:11 -04:00
|
|
|
description = 'Hibernate\'s core ORM functionality'
|
|
|
|
|
2018-01-10 16:06:58 -05:00
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
2019-05-21 17:29:57 -04:00
|
|
|
apply plugin: Antlr4Plugin
|
2013-05-10 16:28:03 -04:00
|
|
|
apply plugin: 'hibernate-matrix-testing'
|
2019-05-21 17:29:57 -04:00
|
|
|
|
2019-11-08 15:54:00 -05:00
|
|
|
ext {
|
|
|
|
jaxbTargetDir = file( "${buildDir}/generated-src/jaxb/main" )
|
|
|
|
}
|
|
|
|
|
2021-05-14 15:59:59 -04:00
|
|
|
configurations {
|
|
|
|
tests {
|
|
|
|
description = 'Configuration for the produced test jar'
|
|
|
|
}
|
|
|
|
|
|
|
|
javassist {
|
|
|
|
description "Dependencies for compiling and running the Javassist tests in the `javassist` source-set"
|
|
|
|
}
|
2019-11-08 15:54:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
2021-05-14 15:59:59 -04:00
|
|
|
main {
|
|
|
|
// add the XJC generated JAXB classes to the main source-set
|
|
|
|
java.srcDir project.jaxbTargetDir
|
|
|
|
}
|
|
|
|
|
2019-11-08 15:54:00 -05:00
|
|
|
// resources inherently exclude sources
|
|
|
|
test {
|
|
|
|
resources {
|
|
|
|
setSrcDirs( ['src/test/java','src/test/resources'] )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-14 15:59:59 -04:00
|
|
|
testJavassist {
|
|
|
|
// define the testJavassist source-set
|
|
|
|
java {
|
|
|
|
compileClasspath += main.output + test.output + configurations.javassist
|
|
|
|
runtimeClasspath += main.output + test.output + configurations.javassist
|
|
|
|
}
|
2016-05-04 16:19:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-08 21:51:41 -04:00
|
|
|
dependencies {
|
2021-05-14 15:59:59 -04:00
|
|
|
api libraries.jpa
|
|
|
|
api libraries.jta
|
|
|
|
api libraries.jandex
|
|
|
|
api libraries.classmate
|
|
|
|
api libraries.commons_annotations
|
|
|
|
api libraries.jaxb_api
|
|
|
|
|
|
|
|
implementation libraries.byteBuddy
|
|
|
|
implementation libraries.activation
|
|
|
|
implementation libraries.jaxb_runtime
|
|
|
|
implementation libraries.antlr
|
|
|
|
|
|
|
|
compileOnly libraries.jacc
|
|
|
|
compileOnly libraries.validation
|
|
|
|
compileOnly libraries.ant
|
|
|
|
compileOnly libraries.cdi
|
|
|
|
compileOnly configurations.javassist
|
|
|
|
|
|
|
|
testImplementation project(':hibernate-testing')
|
|
|
|
testImplementation libraries.shrinkwrap_api
|
|
|
|
testImplementation libraries.shrinkwrap
|
|
|
|
testImplementation libraries.shrinkwrap_descriptors_api_javaee
|
|
|
|
testImplementation libraries.shrinkwrap_descriptors_impl_javaee
|
|
|
|
testImplementation libraries.jacc
|
|
|
|
testImplementation libraries.validation
|
|
|
|
testImplementation( libraries.validator ) {
|
2010-10-08 21:51:41 -04:00
|
|
|
// for test runtime
|
|
|
|
transitive = true
|
|
|
|
}
|
2021-05-14 15:59:59 -04:00
|
|
|
testImplementation libraries.jandex
|
|
|
|
testImplementation libraries.classmate
|
|
|
|
testImplementation libraries.mockito
|
|
|
|
testImplementation libraries.mockito_inline
|
|
|
|
testImplementation libraries.jodaTime
|
|
|
|
testImplementation libraries.assertj
|
|
|
|
testImplementation libraries.log4j
|
|
|
|
testImplementation libraries.cdi
|
|
|
|
testImplementation libraries.jboss_ejb_spec_jar
|
|
|
|
testImplementation libraries.jboss_annotation_spec_jar
|
|
|
|
|
|
|
|
testRuntimeOnly "org.jboss.spec.javax.ejb:jboss-ejb-api_3.2_spec:1.0.0.Final"
|
|
|
|
testRuntimeOnly libraries.expression_language
|
|
|
|
testRuntimeOnly 'jaxen:jaxen:1.1'
|
|
|
|
// testRuntimeOnly libraries.javassist
|
|
|
|
testRuntimeOnly libraries.byteBuddy
|
|
|
|
testRuntimeOnly libraries.weld
|
|
|
|
testRuntimeOnly libraries.atomikos
|
|
|
|
testRuntimeOnly libraries.atomikos_jta
|
|
|
|
testRuntimeOnly libraries.wildfly_transaction_client
|
|
|
|
|
|
|
|
testAnnotationProcessor project( ':hibernate-jpamodelgen' )
|
|
|
|
|
|
|
|
antlr libraries.antlr
|
|
|
|
|
|
|
|
xjc libraries.jaxb_runtime
|
|
|
|
xjc libraries.jaxb_xjc
|
|
|
|
xjc libraries.jaxb2_basics
|
|
|
|
xjc libraries.jaxb2_basics_ant
|
|
|
|
xjc libraries.activation
|
2010-10-08 21:51:41 -04:00
|
|
|
}
|
|
|
|
|
2013-01-23 18:22:03 -05:00
|
|
|
jar {
|
|
|
|
manifest {
|
2019-10-23 04:03:00 -04:00
|
|
|
attributes(
|
|
|
|
'Main-Class': 'org.hibernate.Version',
|
2013-09-10 17:07:39 -04:00
|
|
|
|
2019-10-23 04:03:00 -04:00
|
|
|
// BND Plugin instructions (for OSGi):
|
|
|
|
'Import-Package': [
|
2019-05-21 17:29:57 -04:00
|
|
|
'javax.security.auth;resolution:=optional',
|
2020-04-01 12:32:00 -04:00
|
|
|
// Make javax.security.jacc optional and do not reference a version range (because that's what we used to do)
|
2019-10-23 04:03:00 -04:00
|
|
|
'javax.security.jacc;resolution:=optional;version=!',
|
2020-04-24 08:26:37 -04:00
|
|
|
// Make javax.validation optional and do not reference a version range (because that's what we used to do)
|
|
|
|
'javax.validation;resolution:=optional;version=!',
|
|
|
|
'javax.validation.constraints;resolution:=optional;version=!',
|
|
|
|
'javax.validation.groups;resolution:=optional;version=!',
|
|
|
|
'javax.validation.metadata;resolution:=optional;version=!',
|
2019-10-23 04:03:00 -04:00
|
|
|
// Make javax.enterprise optional and do not reference a version range (because that's what we used to do)
|
|
|
|
'!javax.enterprise*',
|
|
|
|
'javax.enterprise.context.spi;resolution:=optional;version=!',
|
|
|
|
'javax.enterprise.inject.spi;resolution:=optional;version=!',
|
|
|
|
// For JPA, we don't want to target the automatically generated range, but a specific version
|
2019-05-21 17:29:57 -04:00
|
|
|
"javax.persistence;version=\"${project.jpaVersion.osgiName}\"",
|
|
|
|
// optionals
|
|
|
|
'javax.management;resolution:=optional',
|
|
|
|
'javax.naming.event;resolution:=optional',
|
|
|
|
'javax.naming.spi;resolution:=optional',
|
|
|
|
'org.apache.tools.ant;resolution:=optional',
|
|
|
|
'org.apache.tools.ant.taskdefs;resolution:=optional',
|
|
|
|
'org.apache.tools.ant.types;resolution:=optional',
|
|
|
|
'javax.inject;resolution:=optional',
|
|
|
|
'net.bytebuddy.*;resolution:=optional',
|
2020-04-01 12:32:00 -04:00
|
|
|
'org.objectweb.jonas_tm;resolution:=optional',
|
|
|
|
'com.ibm.websphere.jtaextensions;resolution:=optional',
|
2019-05-21 17:29:57 -04:00
|
|
|
// We must specify the version explicitly to allow Karaf
|
|
|
|
// to use an older version of JAXB (the only one we can use in Karaf)
|
2020-04-01 12:32:00 -04:00
|
|
|
"javax.xml.bind.*;version=\"${project.jaxbApiVersionOsgiRange}\"",
|
2019-10-23 04:03:00 -04:00
|
|
|
// Temporarily support JTA 1.1 -- Karaf and other frameworks still
|
|
|
|
// use it. Without this, the plugin generates [1.2,2).
|
|
|
|
'javax.transaction;version="[1.1,2)"',
|
|
|
|
// Also import every package referenced in the code
|
|
|
|
'*'
|
|
|
|
].join( ',' ),
|
|
|
|
'-exportcontents': [
|
|
|
|
// Legacy resource packages containing XSDs that were traditionally not exported
|
|
|
|
"!org.hibernate.xsd.cfg",
|
|
|
|
"!org.hibernate.xsd.mapping",
|
|
|
|
// TODO: Uncomment once EntityManagerFactoryBuilderImpl no longer uses ClassLoaderServiceImpl.
|
|
|
|
//'org.hibernate.boot.registry.classloading.internal',
|
|
|
|
"*;version=${project.version}"
|
|
|
|
].join( ',' ),
|
|
|
|
)
|
2013-01-23 18:22:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-02 21:53:19 -05:00
|
|
|
ext {
|
2019-05-21 17:29:57 -04:00
|
|
|
jaxbTargetDir = file( "${buildDir}/generated-src/jaxb/main" )
|
2013-12-02 21:53:19 -05:00
|
|
|
}
|
|
|
|
|
2011-04-01 12:02:07 -04:00
|
|
|
sourceSets.main {
|
2018-01-16 16:47:05 -05:00
|
|
|
java.srcDir project.jaxbTargetDir
|
2011-04-01 12:02:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// resources inherently exclude sources
|
|
|
|
sourceSets.test.resources {
|
|
|
|
setSrcDirs( ['src/test/java','src/test/resources'] )
|
2010-10-08 21:51:41 -04:00
|
|
|
}
|
|
|
|
|
2019-05-21 17:29:57 -04:00
|
|
|
idea {
|
|
|
|
module {
|
|
|
|
sourceDirs += file( "${buildDir}/generated-src/antlr/main" )
|
|
|
|
}
|
|
|
|
}
|
2010-10-10 16:06:06 -04:00
|
|
|
|
2015-04-09 12:36:04 -04:00
|
|
|
xjc {
|
2018-01-16 16:47:05 -05:00
|
|
|
outputDir = project.jaxbTargetDir
|
2015-04-09 12:36:04 -04:00
|
|
|
|
|
|
|
schemas {
|
|
|
|
cfg {
|
|
|
|
xsd = file( 'src/main/resources/org/hibernate/xsd/cfg/legacy-configuration-4.0.xsd' )
|
|
|
|
xjcBinding = file( 'src/main/xjb/hbm-configuration-bindings.xjb' )
|
|
|
|
}
|
|
|
|
hbm {
|
|
|
|
xsd = file( 'src/main/resources/org/hibernate/xsd/mapping/legacy-mapping-4.0.xsd' )
|
|
|
|
xjcBinding = file( 'src/main/xjb/hbm-mapping-bindings.xjb' )
|
|
|
|
xjcExtensions = ['inheritance', 'simplify']
|
|
|
|
}
|
2021-03-24 10:40:12 -04:00
|
|
|
mapping {
|
|
|
|
xsd = file( 'src/main/resources/org/hibernate/jpa/orm_2_2.xsd' )
|
|
|
|
xjcBinding = file( 'src/main/xjb/mapping-bindings.xjb' )
|
|
|
|
xjcExtensions = ['inheritance']
|
|
|
|
}
|
2012-08-22 14:41:16 -04:00
|
|
|
}
|
2011-03-29 07:58:17 -04:00
|
|
|
}
|
2013-04-04 15:30:53 -04:00
|
|
|
|
2015-04-09 12:36:04 -04:00
|
|
|
|
|
|
|
//sourceSets.main.sourceGeneratorsTask.dependsOn xjc
|
2019-05-21 17:29:57 -04:00
|
|
|
//sourceSets.main.sourceGeneratorsTask.dependsOn antlr
|
|
|
|
tasks.compile.dependsOn antlr
|
|
|
|
|
2016-05-04 16:19:34 -04:00
|
|
|
task copyBundleResources (type: Copy) {
|
2018-01-16 16:47:05 -05:00
|
|
|
ext {
|
|
|
|
bundlesTargetDir = file( "${buildDir}/bundles" )
|
|
|
|
bundleTokens = dbBundle[db]
|
|
|
|
ext.bundleTokens['buildDirName'] = buildDir.absolutePath
|
|
|
|
}
|
|
|
|
|
2016-05-04 16:19:34 -04:00
|
|
|
from file('src/test/bundles')
|
2018-01-16 16:47:05 -05:00
|
|
|
into ext.bundlesTargetDir
|
|
|
|
filter( ReplaceTokens, tokens: ext.bundleTokens)
|
2019-11-08 08:07:56 -05:00
|
|
|
|
2016-05-04 16:19:34 -04:00
|
|
|
doFirst {
|
2018-01-16 16:47:05 -05:00
|
|
|
ext.bundlesTargetDir.mkdirs()
|
2015-07-20 13:06:09 -04:00
|
|
|
}
|
2016-05-04 16:19:34 -04:00
|
|
|
}
|
|
|
|
processTestResources.dependsOn copyBundleResources
|
|
|
|
|
|
|
|
task testJar(type: Jar, dependsOn: testClasses) {
|
2019-10-23 03:58:09 -04:00
|
|
|
archiveClassifier.set( 'test' )
|
2016-05-04 16:19:34 -04:00
|
|
|
from sourceSets.test.output
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
tests testJar
|
|
|
|
}
|
2016-06-17 11:55:24 -04:00
|
|
|
|
2019-05-21 17:29:57 -04:00
|
|
|
task generateEnversStaticMetamodel(
|
|
|
|
type: JavaCompile,
|
|
|
|
description: "Generate the Hibernate Envers revision entity static metamodel classes." ) {
|
|
|
|
source = sourceSets.main.java
|
|
|
|
// we only want to include these specific classes for metamodel generation.
|
|
|
|
// if envers adds any additional revision entity classes, they must be listed here.
|
|
|
|
include 'org/hibernate/envers/DefaultRevisionEntity.java'
|
|
|
|
include 'org/hibernate/envers/DefaultTrackingModifiedEntitiesRevisionEntity.java'
|
|
|
|
include 'org/hibernate/envers/enhanced/SequenceIdRevisionEntity.java'
|
|
|
|
include 'org/hibernate/envers/enhanced/SequenceIdTrackingModifiedEntitiesRevisionEntity.java'
|
|
|
|
|
|
|
|
classpath = sourceSets.main.runtimeClasspath + sourceSets.test.compileClasspath
|
|
|
|
options.compilerArgs = [
|
|
|
|
"-proc:only",
|
|
|
|
"-processor",
|
|
|
|
"org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor"
|
|
|
|
]
|
|
|
|
|
|
|
|
// put static metamodel classes back out to the source tree since they're version controlled.
|
|
|
|
destinationDir = new File( "${projectDir}/src/main/java" )
|
2016-08-06 15:05:03 -04:00
|
|
|
}
|
2019-05-21 17:29:57 -04:00
|
|
|
|
2016-07-20 03:41:18 -04:00
|
|
|
test {
|
2018-01-10 16:06:58 -05:00
|
|
|
systemProperty 'file.encoding', 'utf-8'
|
2020-12-14 05:51:07 -05:00
|
|
|
|
|
|
|
if ( gradle.ext.javaVersions.test.launcher.asInt() >= 9 ) {
|
|
|
|
// See org.hibernate.boot.model.naming.NamingHelperTest.DefaultCharset.set
|
|
|
|
jvmArgs( ['--add-opens', 'java.base/java.nio.charset=ALL-UNNAMED'] )
|
2020-12-14 05:53:52 -05:00
|
|
|
// Weld needs this to generate proxies
|
|
|
|
jvmArgs( ['--add-opens', 'java.base/java.security=ALL-UNNAMED'] )
|
|
|
|
jvmArgs( ['--add-opens', 'java.base/java.lang=ALL-UNNAMED'] )
|
2020-12-14 05:51:07 -05:00
|
|
|
}
|
|
|
|
|
2017-03-23 06:05:03 -04:00
|
|
|
beforeTest { descriptor ->
|
|
|
|
//println "Starting test: " + descriptor
|
|
|
|
}
|
2021-04-06 08:24:13 -04:00
|
|
|
// Allow to exclude specific tests
|
|
|
|
if (project.hasProperty('excludeTests')) {
|
|
|
|
filter {
|
|
|
|
excludeTestsMatching project.property('excludeTests').toString()
|
|
|
|
}
|
|
|
|
}
|
2017-12-14 04:20:02 -05:00
|
|
|
}
|
2019-05-21 17:29:57 -04:00
|
|
|
|
|
|
|
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2019-12-12 12:57:54 -05:00
|
|
|
// Custom Antlr v4 Plugin
|
|
|
|
// - the Gradle-supplied Antlr plugin attempts to simultaneously support
|
|
|
|
// multiple versions of Antlr which leads to many difficulties. this custom
|
|
|
|
// plugin provides dedicated and simplified support for Antlr v4
|
2019-05-21 17:29:57 -04:00
|
|
|
|
|
|
|
ext {
|
|
|
|
baseAntlrInputPath = 'src/main/antlr'
|
|
|
|
baseAntlrOutputPath = 'generated-src/antlr/main'
|
|
|
|
}
|
|
|
|
|
|
|
|
class GrammarDescriptor {
|
|
|
|
String packageName
|
|
|
|
String grammarName
|
|
|
|
|
|
|
|
GrammarDescriptor(String packageName, String grammarName) {
|
|
|
|
this.packageName = packageName
|
|
|
|
this.grammarName = grammarName
|
|
|
|
}
|
|
|
|
|
|
|
|
File resolveSourceFile(Project project) {
|
|
|
|
return project.file(
|
|
|
|
project.baseAntlrInputPath +
|
|
|
|
'/' + packageName.replace( '.', '/' ) +
|
|
|
|
'/' + grammarName + '.g4'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
File resolveOutputFile(Project project) {
|
|
|
|
final File baseOutputDir = project.file( "${project.buildDir}/${project.baseAntlrOutputPath}/" )
|
|
|
|
final File packagedOutputDirectory = new File( baseOutputDir, packageName.replace( '.', '/' ) )
|
|
|
|
|
|
|
|
return new File( packagedOutputDirectory, grammarName + '.g4' )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class Antlr4Plugin implements Plugin<Project> {
|
|
|
|
void apply(Project project) {
|
|
|
|
project.with {
|
|
|
|
apply plugin : 'java'
|
|
|
|
|
|
|
|
configurations.maybeCreate 'antlr'
|
|
|
|
|
|
|
|
Antlr4GenerationTask genTask = tasks.create 'antlr', Antlr4GenerationTask
|
|
|
|
genTask.group = 'Build'
|
|
|
|
genTask.description = 'Generate source code from ANTLR grammar'
|
|
|
|
|
|
|
|
tasks.getByName('compileJava').dependsOn genTask
|
|
|
|
|
|
|
|
SourceSet mainSourceSet = project.convention.getPlugin( JavaPluginConvention ).sourceSets.getByName( SourceSet.MAIN_SOURCE_SET_NAME );
|
|
|
|
mainSourceSet.compileClasspath += configurations.antlr
|
|
|
|
|
|
|
|
SourceSet testSourceSet = project.convention.getPlugin( JavaPluginConvention ).sourceSets.getByName( SourceSet.TEST_SOURCE_SET_NAME );
|
|
|
|
testSourceSet.compileClasspath += configurations.antlr
|
|
|
|
|
|
|
|
project.afterEvaluate({
|
|
|
|
mainSourceSet.java.srcDir( genTask.outputDirectory )
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-08 16:42:43 -04:00
|
|
|
abstract class Antlr4GenerationTask extends DefaultTask {
|
2019-12-16 16:17:30 -05:00
|
|
|
static final String HQL_PCKG = 'org.hibernate.grammars.hql'
|
|
|
|
static final String IMPORT_SQL_PCKG = 'org.hibernate.grammars.importsql'
|
|
|
|
static final String GRAPH_PCKG = 'org.hibernate.grammars.graph'
|
|
|
|
static final String ORDER_PCKG = 'org.hibernate.grammars.ordering'
|
2019-05-21 17:29:57 -04:00
|
|
|
|
|
|
|
List<GrammarDescriptor> grammarDescriptors = [
|
|
|
|
new GrammarDescriptor( HQL_PCKG, 'HqlLexer' ),
|
|
|
|
new GrammarDescriptor( HQL_PCKG, 'HqlParser' ),
|
2020-03-24 18:07:51 -04:00
|
|
|
new GrammarDescriptor( IMPORT_SQL_PCKG, 'SqlScriptLexer' ),
|
|
|
|
new GrammarDescriptor( IMPORT_SQL_PCKG, 'SqlScriptParser' ),
|
2019-05-21 17:29:57 -04:00
|
|
|
new GrammarDescriptor( GRAPH_PCKG, 'GraphLanguageLexer' ),
|
2019-12-12 12:57:54 -05:00
|
|
|
new GrammarDescriptor( GRAPH_PCKG, 'GraphLanguageParser' ),
|
|
|
|
new GrammarDescriptor( ORDER_PCKG, 'OrderingLexer' ),
|
|
|
|
new GrammarDescriptor( ORDER_PCKG, 'OrderingParser' )
|
2019-05-21 17:29:57 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
@InputFiles
|
|
|
|
@SkipWhenEmpty
|
|
|
|
FileCollection getSource() {
|
|
|
|
// only used for UP-TO-DATE checking
|
|
|
|
return project.files( grammarDescriptors*.resolveSourceFile( project ) )
|
|
|
|
}
|
|
|
|
|
|
|
|
@OutputDirectory
|
|
|
|
File getOutputDirectory() {
|
|
|
|
// only used for UP-TO-DATE checking
|
|
|
|
return project.file( "${project.buildDir}/${project.baseAntlrOutputPath}" )
|
|
|
|
}
|
|
|
|
|
|
|
|
@TaskAction
|
|
|
|
void antlrGeneration() {
|
|
|
|
logger.lifecycle( "Starting custom Antlr (v4) grammar generation" )
|
|
|
|
|
|
|
|
grammarDescriptors.forEach( { grammarDescriptor -> generate( grammarDescriptor ) } )
|
|
|
|
}
|
|
|
|
|
|
|
|
def generate(GrammarDescriptor grammarDescriptor) {
|
|
|
|
final File sourceFile = grammarDescriptor.resolveSourceFile( project )
|
|
|
|
final File outputFile = grammarDescriptor.resolveOutputFile( project )
|
|
|
|
|
|
|
|
logger.lifecycle( "Starting Antlr grammar generation `${grammarDescriptor.grammarName} : [${sourceFile.absolutePath}] -> [${outputFile.absolutePath}]" )
|
|
|
|
|
|
|
|
outputFile.parentFile.mkdirs()
|
|
|
|
|
|
|
|
project.javaexec {
|
|
|
|
main 'org.antlr.v4.Tool'
|
|
|
|
classpath project.configurations.antlr
|
|
|
|
args '-o', outputFile.parentFile.absolutePath
|
|
|
|
// args '-lib', sourceFile.parentFile.absolutePath
|
|
|
|
args '-long-messages'
|
|
|
|
args '-listener'
|
|
|
|
args '-visitor'
|
|
|
|
args sourceFile.absolutePath
|
|
|
|
}
|
|
|
|
}
|
2019-12-16 07:43:47 -05:00
|
|
|
|
|
|
|
}
|