Archive for the 'Java' Category

Aug 03 2009

Java and the current work directory

Published by michael under Java

I spent some time looking this up and hopefully I will save someone else time on this. The current work directory for an application in Java is stored in the system property “user.dir”. This is the default directory that you application will write files to if you don’t specify an absolute file location. You can access it using this Java syntax:

String userDir = System.getProperty("user.dir");

No responses yet

Aug 02 2009

Maven pom.xml structure

Published by michael under Maven

I wanted to see the full Maven pom.xml structure and I found the following page on the Maven web site that contains all the elements and descriptions.

http://maven.apache.org/ref/2.2.0/maven-model/maven.html

No responses yet

« Prev