Than I used attached pom-generator.xml for compiling it inside same project like 'mvn -f pom-generator.xml clean install' and I have to run it always when I change generator. And than used it in standard pom.xml as dependency in sculptor-maven-plugin. Everything works.
What do you think, can we use same also for library-example as sample for overriding or you think we have to make separate project for xtend overrides?
Torsten it's possible to merge standard pom with pom-generator.xml via profiles into one and active both for default build?
Which features we are missing? My list include:
1) Get rid of workflow engine (MWE) #53
Torsten it's possible to merge standard pom with pom-generator.xml via profiles into one and active both for default build?No, putting the template override stuff into the same Maven project you'll end up creating separate artifacts with the same maven coordinates (groupId, artifactId, version). To build the "real" artifacts (which needs the template override stuff) needs a dependencies on itself. The Maven reactor does not allow this.
Can I create property in profile and use it as artifactId? This way we can have different artifactId for different profiles?
I started (after some patches) using 3.0 in production project.
nosql.provider=mongoDb
datetime.library=joda
cartridges=builder,mongodb
hibernate_sequence
used by Hibernates "SequenceStyleGenerator".