Maven Settings (Eclipse)

Thursday, 23 January 2014, 20:32

Tags: Eclipse Maven

The Maven preferences I use in Eclipse are described in this post.

Read more


Development Environment Setup

Friday, 27 December 2013, 01:52

Tags: Development Environment Setup Eclipse Maven

Currently most of the development I do is in Java. I use Eclipse as IDE and maven as build tool. In this blog post I will describe the setup of my development environment.

Read more


Maven Local Repository

Thursday, 26 December 2013, 16:20

Tags: Maven

The location of the local repository can be adapted in the maven settings file. This file can be found in the conf directory in your maven home.

Read more


Maven3 and -Dorg.apache.maven.user-settings

Thursday, 26 December 2013, 15:51

Tags: Maven

In Maven2 it was possible to set the location of the user settings file with the org.apache.maven.user-settings environment variable. In the same way the location of the global settings file could be set with org.apache.maven.global-settings environment variable. With Maven3 this is not possible anymore.

Read more


Setting Maven Heap and PermGen Size

Thursday, 26 December 2013, 14:59

Tags: Maven

Once in a while you will run into memory problems when using maven. Whether it is a java.lang.OutOfMemoryError: Java heap space or java.lang.OutOfMemoryError: PermGen space, these problems can be fixed by increasing the heap and/or permgen size.

Read more


MAVEN_OPTS

Thursday, 26 December 2013, 14:31

Tags: Maven

The MAVEN_OPTS environment variable can be used to set options that will be used every time the mvn command is executed.

Read more


Maven Setup

Tuesday, 24 December 2013, 16:36

Tags: Maven

Setting up maven is pretty easy, it only requires a few simple steps.

Read more