mvncons

After I reinstalled my MacBook on my brand new SSD disk, I discovered that maven v3.0.3 was installed with the Java bundle. I tried to build PixelController which was working fine using maven v2.1.x. Of course, compiling failed now ...Read More

vaadin-test-thumb

Vaadin is a fancy JAVA Ajax Web Framework. I had some troubles setting up maven2, thats why I created a quick howto: 1) Download and install Vaadin Add-on's Get the Google Map Add-on from the Vaadin Directory and expand the .zip file. ...Read More

Here are my heavy used Maven2 commands Build Project without Unit Tests: mvn package -Dmaven.test.skip=true Display Dependency Tree: mvn dependency:tree Download all Project Dependencies: mvn dependency:go-offline Deploy JAR into internal Repository (Spring example): mvn deploy:deploy-file -DgroupId=spring -DartifactId=springframework -Dversion=1.2.9 -Dpackaging=jar -Dfile=c:tmpdistspring.jar -DrepositoryId=YOUR-REPO -Durl=scp://cvs.YOUR.REPO.com/java/maven2/ Build Eclipse Project File: mvn eclipse:eclipse Further reading: Professional Java ...Read More