# mvn dependency:sources
# mvn dependency:resolve -Dclassifier=javadoc
Showing posts with label Maven. Show all posts
Showing posts with label Maven. Show all posts
4/24/2014
1/08/2014
Maven Tips and Tricks: Advanced Reactor Options
Source: http://blog.sonatype.com/2009/10/maven-tips-and-tricks-advanced-reactor-options
Docs: http://maven.apache.org/plugins/maven-reactor-plugin/examples.html
Starting with the Maven 2.1 release, there are new Maven command line options which allow you to manipulate the way that Maven will build multimodule projects. These new options are:
Docs: http://maven.apache.org/plugins/maven-reactor-plugin/examples.html
Starting with the Maven 2.1 release, there are new Maven command line options which allow you to manipulate the way that Maven will build multimodule projects. These new options are:
- -rf, –resume-from
- Resume reactor from specified project
- -pl, –projects
- Build specified reactor projects instead of all projects
- -am, –also-make
- If project list is specified, also build projects required by the list
- -amd, –also-make-dependents
- If project list is specified, also build projects that depend on projects on the list
10/18/2011
JBoss Maven Repos
JBoss Maven Repos you can use:
<repository> <id>jboss-public-repository-group</id> <name>JBoss Public Repository Group</name> <url>http://repository.jboss.org/nexus/content/groups/public/</url> <layout>default</layout> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </snapshots> </repository> <repository> <id>jboss-deprecated</id> <name>JBoss Deprecated</name> <url>https://repository.jboss.org/nexus/content/repositories/deprecated/</url> <layout>default</layout> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>jboss-maven2-brew</id> <name>JBoss Maven 2 Brew Repository</name> <url>http://repository.jboss.org/maven2-brew/</url> <layout>default</layout> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository>
Subscribe to:
Posts (Atom)