comparison pom.xml @ 5:7d231e4e86e5

environment setting
author Jorge Urzua <jurzua@mpiwg-berlin.mpg.de>
date Fri, 12 Apr 2013 14:28:32 +0200
parents dfce13a5f5f9
children bc57f2660b0f
comparison
equal deleted inserted replaced
4:45be34377487 5:7d231e4e86e5
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
3 http://maven.apache.org/maven-v4_0_0.xsd"> 3 http://maven.apache.org/maven-v4_0_0.xsd">
4 4
5 <modelVersion>4.0.0</modelVersion> 5 <modelVersion>4.0.0</modelVersion>
6 <groupId>de.mpiwg.indexmeta</groupId> 6 <groupId>de.mpiwg.indexmeta</groupId>
7 <artifactId>indexmeta</artifactId> 7 <artifactId>IndexMetaContextualizer</artifactId>
8 <packaging>jar</packaging> 8 <packaging>war</packaging>
9 <version>1.0-SNAPSHOT</version> 9 <version>1.0-SNAPSHOT</version>
10 <name>de.mpiwg.indexmeta</name> 10 <name>de.mpiwg.indexmeta</name>
11 11
12 <repositories>
13 <repository>
14 <id>snapshots</id>
15 <url>http://anonsvn.icefaces.org/repo/maven2/releases/</url>
16 </repository>
17 </repositories>
18
12 <build> 19 <build>
13 <directory>target</directory> 20 <directory>target</directory>
21 <!--
14 <sourceDirectory>src/main/java</sourceDirectory> 22 <sourceDirectory>src/main/java</sourceDirectory>
23 -->
24 <resources>
25 <resource>
26 <directory>src/main/resources</directory>
27 <filtering>true</filtering>
28 </resource>
29 </resources>
15 30
16 <plugins> 31 <plugins>
17 <plugin> 32 <plugin>
18 <groupId>org.apache.maven.plugins</groupId> 33 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-compiler-plugin</artifactId> 34 <artifactId>maven-compiler-plugin</artifactId>
26 </plugins> 41 </plugins>
27 42
28 </build> 43 </build>
29 44
30 <dependencies> 45 <dependencies>
46 <!-- compat -->
47 <dependency>
48 <groupId>org.icefaces</groupId>
49 <artifactId>icefaces-compat</artifactId>
50 <version>3.2.0</version>
51 <exclusions>
52 <exclusion>
53 <artifactId>jsp-api</artifactId>
54 <groupId>javax.servlet.jsp</groupId>
55 </exclusion>
56 </exclusions>
57
58 </dependency>
59 <dependency>
60 <groupId>org.glassfish</groupId>
61 <artifactId>javax.faces</artifactId>
62 <version>2.1.6</version>
63 </dependency>
64 <!--
65 <dependency>
66 <groupId>javax.el</groupId>
67 <artifactId>el-api</artifactId>
68 <version>1.0</version>
69 </dependency>
70 <dependency>
71 <groupId>javax.servlet</groupId>
72 <artifactId>jstl</artifactId>
73 <version>1.2</version>
74 </dependency>
75 <dependency>
76 <groupId>commons-beanutils</groupId>
77 <artifactId>commons-beanutils</artifactId>
78 <version>1.8.0</version>
79 </dependency>
80 <dependency>
81 <groupId>commons-logging</groupId>
82 <artifactId>commons-logging</artifactId>
83 <version>1.1.1</version>
84 </dependency>
85 -->
86 <!-- compat -->
87
31 <dependency> 88 <dependency>
32 <groupId>org.hibernate</groupId> 89 <groupId>org.hibernate</groupId>
33 <artifactId>hibernate-entitymanager</artifactId> 90 <artifactId>hibernate-entitymanager</artifactId>
34 <version>3.5.5-Final</version> 91 <version>3.5.5-Final</version>
35 </dependency> 92 </dependency>
36 <dependency> 93 <dependency>
37 <groupId>commons-logging</groupId> 94 <groupId>log4j</groupId>
38 <artifactId>commons-logging</artifactId> 95 <artifactId>log4j</artifactId>
39 <version>1.0.4</version> 96 <version>1.2.17</version>
40 </dependency> 97 </dependency>
98
99 <dependency>
100 <groupId>commons-lang</groupId>
101 <artifactId>commons-lang</artifactId>
102 <version>2.6</version>
103 </dependency>
104
41 <dependency> 105 <dependency>
42 <groupId>c3p0</groupId> 106 <groupId>c3p0</groupId>
43 <artifactId>c3p0</artifactId> 107 <artifactId>c3p0</artifactId>
44 <version>0.9.1</version> 108 <version>0.9.1</version>
45 </dependency> 109 </dependency>
58 <artifactId>mysql-connector-java</artifactId> 122 <artifactId>mysql-connector-java</artifactId>
59 <version>5.1.13</version> 123 <version>5.1.13</version>
60 <type>jar</type> 124 <type>jar</type>
61 <scope>compile</scope> 125 <scope>compile</scope>
62 </dependency> 126 </dependency>
127 <!--
128 <dependency>
129 <groupId>javax</groupId>
130 <artifactId>javaee-api</artifactId>
131 <version>6.0</version>
132 </dependency>
133 -->
134
63 135
64 </dependencies> 136 </dependencies>
65 137
66 </project> 138 </project>