File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change 255
255
<plugin >
256
256
<groupId >org.apache.maven.plugins</groupId >
257
257
<artifactId >maven-antrun-plugin</artifactId >
258
- <version >1.7 </version >
258
+ <version >3.0.0 </version >
259
259
<configuration >
260
260
<target >
261
261
<echo message =" ******* Building ACL DDL file *******" />
262
- <taskdef name =" schemaexport" classname =" org.hibernate.tool.hbm2ddl.SchemaExportTask" >
263
- <classpath >
264
- <path refid =" maven.dependency.classpath" />
265
- </classpath >
266
- </taskdef >
267
- <mkdir dir =" target/schema" />
262
+ <taskdef name =" schemaexport" classname =" org.hibernate.tool.hbm2ddl.SchemaExportTask" />
263
+ <mkdir dir =" ${project.build.directory}/schema" />
268
264
<schemaexport quiet =" true" text =" true" create =" true" drop =" false" delimiter =" ;"
269
265
output =" ${project.build.directory}/schema/gsec-acl-ddl.sql"
270
- properties =" ${basedir}/src/main/resources/hibernate.properties" >
271
- <fileset dir =" src/main/resources" includes =" **/*.hbm.xml" />
266
+ properties =" ${project. basedir}/src/main/resources/hibernate.properties" >
267
+ <fileset dir =" ${project.basedir}/ src/main/resources" includes =" **/*.hbm.xml" />
272
268
</schemaexport >
273
269
</target >
274
270
</configuration >
You can’t perform that action at this time.
0 commit comments