Recent Changes - Search:
Thanks to OZU Thanks to OZU

Linked In

links

Reviews

Admin

1&1

edit SideBar

Maven

CoordinateComment
groupidunique amongst organisation, e.g. org.apache.maven Does not have to be dot notation. Does not have to correspond to package.
artifactidgenerally project name.
version
packagingwar, 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

  1. Download the odbc6.jar from : http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_111060.html
  2. mvn install:install-file -Dfile=ojdbc6.jar -Dpackaging=jar\ -DgroupId?=com.oracle -DartifactId?=ojdbc6 -Dversion=11.1.0
  3. add this to pom:
    <dependency>
     <groupId>com.oracle</groupId>
     <artifactId>ojdbc6</artifactId>
     <version>11.1.0</version>
    </dependency>
    
Edit - History - Print - Recent Changes - Search
Page last modified on July 05, 2010, at 10:37 AM