because I want use archetype to create a all in one project ,and delete some file and package by requiredProperty, I can use Velocity show some code by #if like this:
#if(${mysql})
interface ${table.mapperName} : ${superMapperClass}<${entity}>
#else
but the file or directory can't delete
I user the code invoke the JDK method for get current date:
#set( $ldt = $package.getClass().forName("java.time.LocalDateTime").getMethod("now").invoke(null) )
#set( $dtf = $package.getClass().forName("java.time.format.DateTimeFormatter").getMethod("ofPattern", $package.getClass()).invoke(null, "yyyy/MM/dd HH:mm:ss") )
#set( $date = $ldt.format($dtf))
so I think may be can invoke file API to get current dir and remove it:
#set( $CurPath = $package.getClass().forName("java.nio.file.Paths").getMethod("get").invoke(".") )
#set( $CurPathStr = $CurPath.toAbsolutePath().normalize().toString() )
#set( $CurPathStrSys = $package.getClass().forName("java.lang.System").getMethod("getProperty").invoke("user.dir") )
but get error:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:3.2.0:generate (default-cli) on project standalone-pom: Error merging velocity templates: Invocation of method 'getMethod' in class java.lang.Class threw exception java.lang.NoSuchMethodException: java.nio.file.Paths.get() at archetype-resources/__rootArtifactId__-service/src/main/java/MainApplication.java[line 5, column 69] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
the error is the java reflect error,I get the right fun like this:
so it can delete some file by this: