Created
December 11, 2010 06:42
-
-
Save happyrobots/737204 to your computer and use it in GitHub Desktop.
Maven (2.2.1) Project pom.xml for JPA app with social network API libraries
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>org.this</groupId> | |
<artifactId>project</artifactId> | |
<packaging>jar</packaging> | |
<version>1.0-SNAPSHOT</version> | |
<name>Project Name</name> | |
<url>http://example.com</url> | |
<description>My typical JPA app with social network API libraries.</description> | |
<developers> | |
<developer> | |
<name>Name</name> | |
<email>[email protected]</email> | |
<timezone>8</timezone> | |
<roles> | |
<role>Developer</role> | |
</roles> | |
</developer> | |
</developers> | |
<ciManagement> | |
<system>Hudson</system> | |
<url>http://localhost:9989/hudson</url> | |
</ciManagement> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>2.0.2</version> | |
<configuration> | |
<source>1.6</source> | |
<target>1.6</target> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-javadoc-plugin</artifactId> | |
<version>2.7</version> | |
<configuration> | |
<doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> | |
<!-- <docletPath>/path/to/UmlGraph.jar</docletPath> --> | |
<docletArtifact> | |
<groupId>org.umlgraph</groupId> | |
<artifactId>doclet</artifactId> | |
<version>5.1</version> | |
</docletArtifact> | |
<additionalparam>-all</additionalparam> | |
<useStandardDocletOptions>true</useStandardDocletOptions> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-surefire-plugin</artifactId> | |
<version>2.6</version> | |
<configuration> | |
<skipTests>true</skipTests> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
<repositories> | |
<repository> | |
<id>eclipselink</id> | |
<url>http://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/rt/eclipselink/maven.repo/</url> | |
</repository> | |
<repository> | |
<id>twitter4j.org</id> | |
<name>twitter4j.org Repository</name> | |
<url>http://twitter4j.org/maven2</url> | |
<releases> | |
<enabled>true</enabled> | |
</releases> | |
<snapshots> | |
<enabled>true</enabled> | |
</snapshots> | |
</repository> | |
<repository> | |
<id>sonatype-google-snapshot</id> | |
<name>Facebook Java API Snapshot repository</name> | |
<url>http://oss.sonatype.org/content/repositories/googlecode-snapshots/</url> | |
<snapshots> | |
<enabled>true</enabled> | |
</snapshots> | |
</repository> | |
<repository> | |
<url>http://ftp.ing.umu.se/mirror/eclipse/rt/eclipselink/maven.repo</url> | |
<id>eclipselink</id> | |
<layout>default</layout> | |
<name>Repository for library Library[eclipselink]</name> | |
</repository> | |
</repositories> | |
<dependencies> | |
<dependency> | |
<groupId>org.quartz-scheduler</groupId> | |
<artifactId>quartz</artifactId> | |
<version>1.8.3</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.persistence</groupId> | |
<artifactId>eclipselink</artifactId> | |
<version>2.1.0</version> | |
</dependency> | |
<!-- optional - only needed if you are using JPA outside of a Java EE container--> | |
<!-- For Twitter4j --> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>3.8.1</version> | |
<scope>test</scope> | |
<optional>true</optional> | |
</dependency> | |
<dependency> | |
<!-- MANUAL INSTALL --> | |
<groupId>com.aetrion.flickr</groupId> | |
<artifactId>flickrapi</artifactId> | |
<version>1.2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.twitter4j</groupId> | |
<artifactId>twitter4j-core</artifactId> | |
<version>2.1.3</version> | |
</dependency> | |
<dependency> | |
<groupId>mysql</groupId> | |
<artifactId>mysql-connector-java</artifactId> | |
<version>5.1.12</version> | |
</dependency> | |
<dependency> | |
<groupId>org.codehaus.jackson</groupId> | |
<artifactId>jackson-core-asl</artifactId> | |
<version>1.5.4</version> | |
</dependency> | |
<dependency> | |
<groupId>org.codehaus.jackson</groupId> | |
<artifactId>jackson-mapper-asl</artifactId> | |
<version>1.5.4</version> | |
</dependency> | |
<dependency> | |
<!-- MANUAL INSTALL --> | |
<groupId>com.googlecode.batchfb</groupId> | |
<artifactId>batchfb</artifactId> | |
<version>0.6</version> | |
</dependency> | |
<dependency> | |
<groupId>log4j</groupId> | |
<artifactId>log4j</artifactId> | |
<version>1.2.15</version> | |
<exclusions> | |
<exclusion> | |
<artifactId>jmxri</artifactId> | |
<groupId>com.sun.jmx</groupId> | |
</exclusion> | |
<exclusion> | |
<artifactId>jms</artifactId> | |
<groupId>javax.jms</groupId> | |
</exclusion> | |
<exclusion> | |
<artifactId>jmxtools</artifactId> | |
<groupId>com.sun.jdmk</groupId> | |
</exclusion> | |
<exclusion> | |
<artifactId>mail</artifactId> | |
<groupId>javax.mail</groupId> | |
</exclusion> | |
<exclusion> | |
<artifactId>activation</artifactId> | |
<groupId>javax.activation</groupId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>net.sf.opencsv</groupId> | |
<artifactId>opencsv</artifactId> | |
<version>2.0</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.sql</groupId> | |
<artifactId>jdbc-stdext</artifactId> | |
<version>2.0</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.transaction</groupId> | |
<artifactId>jta</artifactId> | |
<version>1.1</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.annotation</groupId> | |
<artifactId>jsr250-api</artifactId> | |
<version>1.0</version> | |
<!--<scope>provided</scope> MANUAL INSTALL --> | |
</dependency> | |
<dependency> | |
<!-- PRIVATE REPO --> | |
<groupId>org.nm</groupId> | |
<artifactId>tumblr4j</artifactId> | |
<version>0.1-SNAPSHOT</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.persistence</groupId> | |
<artifactId>javax.persistence</artifactId> | |
<version>2.0.0</version> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment