July 19, 2007

Maven 2 Notes

Upgrade to Maven 2.0.6 because I had 2.0.3

http://bugs.sakaiproject.org/confluence/display/ENC/Using+Maven+2

<settings xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<pluginGroups>
<pluginGroup>org.apache.pluto</pluginGroup>
</pluginGroups>
<profiles>
<profile>
<id>sakai</id>
<properties>
<maven.tomcat.home>/Users/csev/dev/apache-tomcat-5.5.20/</maven.tomcat.home>
<maven.test.skip>true</maven.test.skip>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>sakai</activeProfile>
</activeProfiles>
</settings>

mvn clean
mvn install
mvn sakai:deploy

Posted by csev at July 19, 2007 02:42 PM