comparison pom.xml @ 0:dfce13a5f5f9

nit project!
author Jorge Urzua <jurzua@mpiwg-berlin.mpg.de>
date Thu, 11 Apr 2013 15:25:26 +0200
parents
children 7d231e4e86e5
comparison
equal deleted inserted replaced
-1:000000000000 0:dfce13a5f5f9
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
3 http://maven.apache.org/maven-v4_0_0.xsd">
4
5 <modelVersion>4.0.0</modelVersion>
6 <groupId>de.mpiwg.indexmeta</groupId>
7 <artifactId>indexmeta</artifactId>
8 <packaging>jar</packaging>
9 <version>1.0-SNAPSHOT</version>
10 <name>de.mpiwg.indexmeta</name>
11
12 <build>
13 <directory>target</directory>
14 <sourceDirectory>src/main/java</sourceDirectory>
15
16 <plugins>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-compiler-plugin</artifactId>
20 <configuration>
21 <includes>
22 <include>resources</include>
23 </includes>
24 </configuration>
25 </plugin>
26 </plugins>
27
28 </build>
29
30 <dependencies>
31 <dependency>
32 <groupId>org.hibernate</groupId>
33 <artifactId>hibernate-entitymanager</artifactId>
34 <version>3.5.5-Final</version>
35 </dependency>
36 <dependency>
37 <groupId>commons-logging</groupId>
38 <artifactId>commons-logging</artifactId>
39 <version>1.0.4</version>
40 </dependency>
41 <dependency>
42 <groupId>c3p0</groupId>
43 <artifactId>c3p0</artifactId>
44 <version>0.9.1</version>
45 </dependency>
46 <dependency>
47 <groupId>org.slf4j</groupId>
48 <artifactId>slf4j-api</artifactId>
49 <version>1.6.6</version>
50 </dependency>
51 <dependency>
52 <groupId>org.slf4j</groupId>
53 <artifactId>slf4j-log4j12</artifactId>
54 <version>1.6.6</version>
55 </dependency>
56 <dependency>
57 <groupId>mysql</groupId>
58 <artifactId>mysql-connector-java</artifactId>
59 <version>5.1.13</version>
60 <type>jar</type>
61 <scope>compile</scope>
62 </dependency>
63
64 </dependencies>
65
66 </project>