summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorSebastian2012-06-03 12:17:24 +0200
committerSebastian2012-06-03 12:17:24 +0200
commitf419209f64249c4441920503582e194ba01e7195 (patch)
treef6d3ce32d6ef3897b9d4f877342e9bf0308614db /pom.xml
downloadxss-jpa-f419209f64249c4441920503582e194ba01e7195.tar.gz
xss-jpa-f419209f64249c4441920503582e194ba01e7195.tar.xz
xss-jpa-f419209f64249c4441920503582e194ba01e7195.zip
initial import
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml68
1 files changed, 68 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..2ce7f48
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,68 @@
+<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/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>nu.xss</groupId>
+ <artifactId>xss-jpa</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <hibernate.version>4.1.4.Final</hibernate.version>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-core</artifactId>
+ <version>${hibernate.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-entitymanager</artifactId>
+ <version>${hibernate.version}</version>
+ </dependency>
+ </dependencies>
+
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.5</version>
+ <configuration>
+ <source>1.7</source>
+ <target>1.7</target>
+ </configuration>
+ </plugin>
+ <!-- No dependencies in jar for helpers..
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptorRefs>
+ <descriptorRef>jar-with-dependencies</descriptorRef>
+ </descriptorRefs>
+ </configuration>
+ </plugin>
+ -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.8.1</version>
+ <configuration>
+ <stylesheetfile>${basedir}/src/main/javadoc/stylesheet.css</stylesheetfile>
+ <show>public</show>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <distributionManagement>
+ <repository>
+ <id>nexus-deploy</id>
+ <name>Nexus Staging Repo</name>
+ <url>http://localhost:8081/nexus/content/repositories/snapshots/</url>
+ </repository>
+ </distributionManagement>
+
+</project> \ No newline at end of file