Sculptor is an open source productivity tool. You express your design intent in a textual DSL, from which Sculptor generates high quality Java code and configuration.
mvn archetype:generate -DarchetypeGroupId=org.fornax.cartridges -DarchetypeArtifactId=fornax-cartridges-sculptor-archetype-appengine -DarchetypeVersion=1.7.0-SNAPSHOT -DarchetypeRepository=http://www.fornax-platform.org/archiva/repository/snapshots/
cd
mvn clean
mvn generate-sources
mvn eclipse:eclipse
aggregate
BasicType
id
findById
sayHello
findByKey
name
Planet
There was an error on build project. The "datanucleus-core" library was registered twice. To be able to build this project I had to explicitly define version of "datanucleus-core" bundle for "maven-"datanucleus-plugin": <plugin> <artifactId>maven-datanucleus-plugin</artifactId> .... <dependencies> <dependency> <groupId>org.datanucleus</groupId> <artifactId>datanucleus-core</artifactId> <version>1.1.5</version> </dependency> </dependencies> </plugin>
Strange, but true. I have fixed it and deployed new snapshot of the archetype. Thanks for finding this and providing the solution./Patrik
There was an error on build project. The "datanucleus-core" library was registered twice. To be able to build this project I had to explicitly define version of "datanucleus-core" bundle for "maven-"datanucleus-plugin":
ReplyDelete<plugin>
<artifactId>maven-datanucleus-plugin</artifactId>
....
<dependencies>
<dependency>
<groupId>org.datanucleus</groupId>
<artifactId>datanucleus-core</artifactId>
<version>1.1.5</version>
</dependency>
</dependencies>
</plugin>
Strange, but true. I have fixed it and deployed new snapshot of the archetype. Thanks for finding this and providing the solution.
ReplyDelete/Patrik