简体   繁体   中英

Maven archetype: Boolean properties

Can I implement the following in a Maven archetype:

If a certain property is set to true, then a package should be generated (otherwise not).

Maven Archetype allows you to execute groovy script after generation. Check Post-generation script section.

  • Generate you classes as following:
    #if ( $doGenerate )
    // your content here
    #else
    *DELETE*
    #end
  • Create simple script which go through all the files and delete some if it content has *DELETE* marker.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM