summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorSebastian2012-06-03 16:07:07 +0200
committerSebastian2012-06-03 16:07:07 +0200
commit3571512d36c3aec28fdc8aa76c01f520f0c5fdbd (patch)
treeadeca21bb1b23bdb9f8b2cb7c5c369bda326003e /pom.xml
parentinitial import (diff)
downloadxss-jpa-3571512d36c3aec28fdc8aa76c01f520f0c5fdbd.tar.gz
xss-jpa-3571512d36c3aec28fdc8aa76c01f520f0c5fdbd.tar.xz
xss-jpa-3571512d36c3aec28fdc8aa76c01f520f0c5fdbd.zip
fix gernericdao; add logging
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 2ce7f48..ec596d8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,11 +3,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>nu.xss</groupId>
<artifactId>xss-jpa</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>0.0.2-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<hibernate.version>4.1.4.Final</hibernate.version>
+ <slf4j.version>1.6.1</slf4j.version>
</properties>
<dependencies>
@@ -21,6 +22,11 @@
<artifactId>hibernate-entitymanager</artifactId>
<version>${hibernate.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>${slf4j.version}</version>
+ </dependency>
</dependencies>