|
Project Information
Featured
Links
|
NewsJBoss Seam: Hotdeploy Maven Plugin and Archetype updated
[2009-11-16 by thug] JBoss Seam Archetype SNAPSHOT updatedFixes errors in the persistence configuration. This failed unit tests when they started to do some real integration work... Also:
[2009-08-09 by thug] JBoss Seam Hotdeploy Maven Plugin v0.3.2The latest version supports now also packaging regular WAR files for production deployment: <plugin>
<groupId>com.ctp.seam.maven</groupId>
<artifactId>maven-hotdeploy-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<source>${java.source.version}</source>
<target>${java.source.version}</target>
<sourceDirectory>${basedir}/src/main/hot</sourceDirectory>
<useWarPackaging>true</useWarPackaging>
</configuration>
</plugin>You can put this configuration in a dedicated profile to create a hot-deploy free WAR file. The plugin repository now also contains Maven meta data. [2009-08-09 by thug] JBoss Seam Archetype - now with ICEFacesThe latest JBoss Seam Archetype snapshot supports creating your project also with ICEFaces as rich component library, similar to seam-gen. Simply use: >mvn archetype:generate -DarchetypeCatalog=http://tinyurl.com/jbsarch -DajaxLibrary=icefaces [INFO] Scanning for projects... [INFO] Searching repository for plugin with prefix: 'archetype'. ... Choose archetype: 1: http://tinyurl.com/jbsarch -> jboss-seam-archetype (Archetype for JBoss Seam Projects) Choose a number: (1): 1 Define value for serverDir: : [your JBoss 5 server location] Define value for groupId: : [your groupId] Define value for artifactId: : [your artifactId] Define value for version: 1.0-SNAPSHOT: : [your version] Define value for package: : [your package] Confirm properties configuration: serverType: jboss5 ajaxLibrary: icefaces ... Y: : y [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESSFUL [INFO] ------------------------------------------------------------------------ See the full blog post here. The Wiki page can be found here. JBoss Seam ArchetypeInstead of our previous sample JBoss Seam POM, we have now a Seam Maven Archetype for you. Simply type: mvn archetype:generate -DarchetypeCatalog=http://tinyurl.com/jbsarch and fill out the values you're prompted for. See the full blog post here. The Wiki page can be found here. |