i've tried to generate the sql-ddl files of my entities via hbm2ddl through gradle. But when I use the compiled classes as classpath, I won't get any output. The generated file will always be empty. I only get the desired file output, if I use the final jar as classpath. When I use hbm2ddl via ant/ivy it is also possible to use the compiled classes as classpath.
Has anybody got an idea?
Here's my build.gradle. I put both classpathes in there. The one that doesn't work at the moment is a comment.
configurations{ hibernateTool }
dependencies {
compile project(':projects:allg'),
'javax.persistence:persistence-api:1.0',
'org.hibernate:hibernate-search:3.1.1.GA',
'org.apache.lucene:lucene-core:3.5.0'
hibernateTool 'org.hibernate:hibernate-tools:3.2.4.GA',
'org.hibernate:hibernate-entitymanager:3.6.10.Final',
'org.slf4j:jcl-over-slf4j:1.6.6',
'org.slf4j:slf4j-simple:1.6.6'
}
def generatedResources = "$buildDir/generated-resources/main/"
sourceSets {
main { output.dir(generatedResources) }
}
task createSchema(dependsOn: build) << {
new File(generatedResources).mkdirs()
ant {
taskdef(name: 'hibernatetool', classname: 'org.hibernate.tool.ant.HibernateToolTask', classpath: configurations.hibernateTool.asPath )
hibernatetool(destdir: generatedResources) {
jpaconfiguration(persistenceunit: 'hibernate.mysql')
// classpath(path: sourceSets.main.output.asPath)
classpath(path: jar.archivePath)
hbm2ddl(create: true, export: false, outputfilename:'schema-ddl-mysql.sql', delimiter: ';', format: true, haltonerror: true)
}
}
}