Last updated by
4 years ago
Page: Maven Support, Version:1
Starting this page to record some hard-found information on Maven.
Installing and uploading artifacts
The Grails build has two targets for Maven-related activities:-
maven-install- installs the current Grails artifacts to the local Maven repository -
maven-deploy- uploads the current Grails artifacts to the Codehaus Maven repository
~/.m2/settings.xml ):<settings> … <servers> <server> <id>codehaus.org</id> <username>USERNAME</username> <password>PASSWORD</password> </server> </servers> … </settings>