comparison pom.xml @ 0:3e62083dbcbf

First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
author "jurzua <jurzua@mpiwg-berlin.mpg.de>"
date Thu, 23 Apr 2015 15:46:01 +0200
parents
children 1af9d7db348e
comparison
equal deleted inserted replaced
-1:000000000000 0:3e62083dbcbf
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 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>de.mpiwg</groupId>
5 <artifactId>LGServices</artifactId>
6 <packaging>war</packaging>
7 <version>1.0-SNAPSHOT</version>
8 <name>LGServices Maven Webapp</name>
9 <url>http://maven.apache.org</url>
10
11
12
13 <dependencies>
14
15 <dependency>
16 <groupId>cl.talca</groupId>
17 <artifactId>hashMapping</artifactId>
18 <version>1.0</version>
19 </dependency>
20 <!--
21 <dependency>
22 <groupId>javax.servlet</groupId>
23 <artifactId>javax.servlet-api</artifactId>
24 <version>3.0-alpha-1</version>
25 <scope>provided</scope>
26 </dependency>
27 -->
28 <dependency>
29 <groupId>javax.servlet.jsp</groupId>
30 <artifactId>jsp-api</artifactId>
31 <version>2.2.1-b03</version>
32 <scope>provided</scope>
33 </dependency>
34 <dependency>
35 <groupId>javax.el</groupId>
36 <artifactId>el-api</artifactId>
37 <version>2.2.1-b04</version>
38 <scope>provided</scope>
39 </dependency>
40
41 <dependency>
42 <groupId>javax.servlet</groupId>
43 <artifactId>jstl</artifactId>
44 <version>1.2</version>
45 </dependency>
46
47 <!--
48 <dependency>
49 <groupId>jstl</groupId>
50 <artifactId>jstl</artifactId>
51 <version>1.2</version>
52 <scope>compile</scope>
53 </dependency>
54
55 <dependency>
56 <groupId>taglibs</groupId>
57 <artifactId>standard</artifactId>
58 <version>1.1.2</version>
59 <scope>compile</scope>
60 </dependency>
61 -->
62
63 <!-- REST API - jersey -->
64
65 <dependency>
66 <groupId>org.apache.tomcat</groupId>
67 <artifactId>tomcat-servlet-api</artifactId>
68 <version>7.0.59</version>
69 <scope>provided</scope>
70 </dependency>
71
72 <dependency>
73 <groupId>commons-fileupload</groupId>
74 <artifactId>commons-fileupload</artifactId>
75 <version>1.3.1</version>
76 </dependency>
77
78 <dependency>
79 <groupId>org.slf4j</groupId>
80 <artifactId>slf4j-log4j12</artifactId>
81 <version>1.6.4</version>
82 </dependency>
83 <dependency>
84 <groupId>log4j</groupId>
85 <artifactId>log4j</artifactId>
86 <version>1.2.17</version>
87 </dependency>
88
89
90 <dependency>
91 <groupId>asm</groupId>
92 <artifactId>asm</artifactId>
93 <version>3.3.1</version>
94 </dependency>
95 <!-- Others -->
96
97 <dependency>
98 <groupId>commons-lang</groupId>
99 <artifactId>commons-lang</artifactId>
100 <version>2.6</version>
101 </dependency>
102 <dependency>
103 <groupId>org.json</groupId>
104 <artifactId>json</artifactId>
105 <version>20090211</version>
106 </dependency>
107 <!-- hibernate -->
108 <dependency>
109 <groupId>org.hibernate</groupId>
110 <artifactId>hibernate-core</artifactId>
111 <version>4.3.8.Final</version>
112 </dependency>
113 <dependency>
114 <groupId>org.hibernate</groupId>
115 <artifactId>hibernate-entitymanager</artifactId>
116 <version>4.3.8.Final</version>
117 </dependency>
118 <dependency>
119 <groupId>org.hibernate</groupId>
120 <artifactId>hibernate-c3p0</artifactId>
121 <version>4.3.8.Final</version>
122 </dependency>
123
124 <dependency>
125 <groupId>c3p0</groupId>
126 <artifactId>c3p0</artifactId>
127 <version>0.9.1.2</version>
128 </dependency>
129
130 <dependency>
131 <groupId>mysql</groupId>
132 <artifactId>mysql-connector-java</artifactId>
133 <version>5.1.6</version>
134 </dependency>
135
136 </dependencies>
137
138
139 <build>
140 <finalName>LGServices</finalName>
141 <resources>
142 <resource>
143 <filtering>false</filtering>
144 <directory>src/main/resources</directory>
145 </resource>
146 <resource>
147 <filtering>false</filtering>
148 <directory>src/main/java</directory>
149 <includes>
150 <include>**</include>
151 </includes>
152 <excludes>
153 <exclude>**/*.java</exclude>
154 </excludes>
155 </resource>
156 </resources>
157
158 <plugins>
159 <plugin>
160 <artifactId>maven-compiler-plugin</artifactId>
161 <version>2.3.2</version>
162 <configuration>
163 <source>1.7</source>
164 <target>1.7</target>
165 </configuration>
166 </plugin>
167 <plugin>
168 <groupId>org.apache.tomcat.maven</groupId>
169 <artifactId>tomcat7-maven-plugin</artifactId>
170 <version>2.2</version>
171 </plugin>
172
173 <plugin>
174 <groupId>org.mortbay.jetty</groupId>
175 <artifactId>maven-jetty-plugin</artifactId>
176 <version>6.1.10</version>
177 <configuration>
178 <scanIntervalSeconds>10</scanIntervalSeconds>
179 <stopKey>foo</stopKey>
180 <stopPort>9999</stopPort>
181 </configuration>
182 <executions>
183 <execution>
184 <id>start-jetty</id>
185 <phase>pre-integration-test</phase>
186 <goals>
187 <goal>run</goal>
188 </goals>
189 <configuration>
190 <scanIntervalSeconds>0</scanIntervalSeconds>
191 <daemon>true</daemon>
192 </configuration>
193 </execution>
194 <execution>
195 <id>stop-jetty</id>
196 <phase>post-integration-test</phase>
197 <goals>
198 <goal>stop</goal>
199 </goals>
200 </execution>
201 </executions>
202 </plugin>
203
204 </plugins>
205
206 </build>
207
208 </project>