| Coordinate | Comment |
| groupid | unique amongst organisation, e.g. org.apache.maven Does not have to be dot notation. Does not have to correspond to package. |
| artifactid | generally project name. |
| version |
| packaging | war, jar (default) pom, ear etc. |
| classifier | ? |
Taken from http://maven.apache.org/pom.html
Tips
- To make a parent project, create a simple maven project with a target of pom.
Getting oracle dependencies
- Download the odbc6.jar from : http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_111060.html
- mvn install:install-file -Dfile=ojdbc6.jar -Dpackaging=jar\ -DgroupId?=com.oracle -DartifactId?=ojdbc6 -Dversion=11.1.0
- add this to pom:
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.1.0</version>
</dependency>