Maven: Maven Tips & Quick Start & Cheat Sheet
July 19th, 2010 by jeremychoneSkip Test
mvn -Dmaven.test.skip=true package
Official JBoss Repository for Hibernate and more
<repository> <id>jboss-repository-group</id> <name>jboss-repository-group</name> <url>https://repository.jboss.org/nexus/content/groups/public/</url> <layout>default</layout> </repository>
Note: the “http://repository.jboss.org/maven2/” is deprecated. Use the above one (Announcement, Getting Started Doc ).
Generate Source
mvn source:jar
Generate Source
mvn javadoc:jar
Publishing Artifacts to Central Repository
Maven Sonatype/Maven Central commands
Publish Snapshots
mvn clean deploy
Or better with source
mvn clean source:jar javadoc:jar deploy
Stage the release
# prepare it (will create the new tag in sonatype SVN, automatically checking in on your behalf). mvn release:clean mvn release:prepare #stage the release mvn release:perform
Maven will checkout the tag you just prepared, then build and deploy it into Nexus staging repository.