comparison pom.xml @ 2:0e0082e1e12f

(none)
author jurzua
date Wed, 29 Oct 2014 13:29:22 +0000
parents
children d71f28dac165
comparison
equal deleted inserted replaced
1:615d27dce9b3 2:0e0082e1e12f
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5
6 <modelVersion>4.0.0</modelVersion>
7 <groupId>de.mpiwg.openmind</groupId>
8 <artifactId>openmind</artifactId>
9 <packaging>jar</packaging>
10
11 <version>1.0.0</version>
12 <name>openmind</name>
13 <description></description>
14 <organization>
15 <name>Max Planck Institute for the History of Science</name>
16 <url>www.mpiwg-berlin.mpg.de</url>
17 </organization>
18
19 <licenses>
20 <license>
21 <name>The Apache Software License, Version 2.0</name>
22 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
23 <distribution>repo</distribution>
24 </license>
25 </licenses>
26
27
28 <dependencies>
29
30 <dependency>
31 <groupId>cl.talca</groupId>
32 <artifactId>hashMapping</artifactId>
33 <version>1.0</version>
34 </dependency>
35
36 <!-- LOGGING DEPENDENCIES - LOG4J -->
37
38 <dependency>
39 <groupId>org.slf4j</groupId>
40 <artifactId>slf4j-log4j12</artifactId>
41 <version>1.6.4</version>
42 </dependency>
43
44 <dependency>
45 <groupId>log4j</groupId>
46 <artifactId>log4j</artifactId>
47 <version>1.2.16</version>
48 </dependency>
49
50 <!-- JUNIT DEPENDENCY FOR TESTING -->
51 <dependency>
52 <groupId>junit</groupId>
53 <artifactId>junit</artifactId>
54 <version>4.10</version>
55 <scope>test</scope>
56 </dependency>
57
58 <!-- jurzua -->
59 <dependency>
60 <groupId>commons-lang</groupId>
61 <artifactId>commons-lang</artifactId>
62 <version>2.6</version>
63 </dependency>
64 <!-- to delete!! -->
65 <dependency>
66 <groupId>org.jdom</groupId>
67 <artifactId>jdom</artifactId>
68 <version>1.1.3</version>
69 </dependency>
70 <dependency>
71 <groupId>org.apache.httpcomponents</groupId>
72 <artifactId>httpclient</artifactId>
73 <version>4.2.5</version>
74 </dependency>
75 <dependency>
76 <groupId>joda-time</groupId>
77 <artifactId>joda-time</artifactId>
78 <version>2.2</version>
79 </dependency>
80 <dependency>
81 <groupId>org.json</groupId>
82 <artifactId>json</artifactId>
83 <version>20090211</version>
84 </dependency>
85
86 <!-- hibernate -->
87 <dependency>
88 <groupId>org.hibernate</groupId>
89 <artifactId>hibernate-core</artifactId>
90 <version>3.5.6-Final</version>
91 </dependency>
92 <dependency>
93 <groupId>org.hibernate</groupId>
94 <artifactId>hibernate-entitymanager</artifactId>
95 <version>3.5.6-Final</version>
96 </dependency>
97 <dependency>
98 <groupId>org.hibernate</groupId>
99 <artifactId>hibernate-c3p0</artifactId>
100 <version>3.5.6-Final</version>
101 </dependency>
102 <!--
103 <dependency>
104 <groupId>org.hibernate</groupId>
105 <artifactId>hibernate-commons-annotations</artifactId>
106 <version>3.2.0.Final</version>
107 </dependency>
108 -->
109
110 <dependency>
111 <groupId>c3p0</groupId>
112 <artifactId>c3p0</artifactId>
113 <version>0.9.1.2</version>
114 </dependency>
115 <dependency>
116 <groupId>mysql</groupId>
117 <artifactId>mysql-connector-java</artifactId>
118 <version>5.1.6</version>
119 </dependency>
120
121 <dependency>
122 <groupId>postgresql</groupId>
123 <artifactId>postgresql</artifactId>
124 <version>9.1-901.jdbc4</version>
125 </dependency>
126
127
128 <dependency>
129 <groupId>org.springframework</groupId>
130 <artifactId>spring-context</artifactId>
131 <version>3.0.0.RELEASE</version>
132 </dependency>
133 <dependency>
134 <groupId>org.springframework</groupId>
135 <artifactId>spring-tx</artifactId>
136 <version>3.0.0.RELEASE</version>
137 </dependency>
138 <dependency>
139 <groupId>org.springframework</groupId>
140 <artifactId>spring-support</artifactId>
141 <version>1.2.9</version>
142 </dependency>
143 <dependency>
144 <groupId>quartz</groupId>
145 <artifactId>quartz</artifactId>
146 <version>1.5.2</version>
147 </dependency>
148 <dependency>
149 <groupId>javolution</groupId>
150 <artifactId>javolution</artifactId>
151 <version>5.5.1</version>
152 </dependency>
153
154
155 </dependencies>
156
157 <build>
158 <resources>
159 <resource>
160 <filtering>false</filtering>
161 <directory>src/main/resources</directory>
162 </resource>
163 <resource>
164 <filtering>false</filtering>
165 <directory>src/main/java</directory>
166 <includes>
167 <include>**</include>
168 </includes>
169 <excludes>
170 <exclude>**/*.java</exclude>
171 </excludes>
172 </resource>
173 </resources>
174 <testResources>
175 <testResource>
176 <filtering>false</filtering>
177 <directory>src/test/resources</directory>
178 </testResource>
179 <testResource>
180 <filtering>false</filtering>
181 <directory>src/test/java</directory>
182 <includes>
183 <include>**</include>
184 </includes>
185 <excludes>
186 <exclude>**/*.java</exclude>
187 </excludes>
188 </testResource>
189 </testResources>
190 <plugins>
191 <plugin>
192 <inherited>true</inherited>
193 <groupId>org.apache.maven.plugins</groupId>
194 <artifactId>maven-compiler-plugin</artifactId>
195 <version>2.5.1</version>
196 <configuration>
197 <source>1.6</source>
198 <target>1.6</target>
199 <encoding>UTF-8</encoding>
200 <showWarnings>true</showWarnings>
201 <showDeprecation>true</showDeprecation>
202 </configuration>
203 </plugin>
204 <plugin>
205 <groupId>org.apache.maven.plugins</groupId>
206 <artifactId>maven-source-plugin</artifactId>
207 <executions>
208 <execution>
209 <id>attach-sources</id>
210 <goals>
211 <goal>jar</goal>
212 </goals>
213 </execution>
214 </executions>
215 </plugin>
216
217 <!--
218 <plugin>
219 <groupId>org.mortbay.jetty</groupId>
220 <artifactId>jetty-maven-plugin</artifactId>
221 <version>${jetty.version}</version>
222 <configuration>
223 <connectors>
224 <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
225 <port>8080</port>
226 <maxIdleTime>3600000</maxIdleTime>
227 </connector>
228 <connector implementation="org.eclipse.jetty.server.ssl.SslSocketConnector">
229 <port>8443</port>
230 <maxIdleTime>3600000</maxIdleTime>
231 <keystore>${project.build.directory}/test-classes/keystore</keystore>
232 <password>wicket</password>
233 <keyPassword>wicket</keyPassword>
234 </connector>
235 </connectors>
236 </configuration>
237 </plugin>
238 -->
239 <plugin>
240 <groupId>org.apache.maven.plugins</groupId>
241 <artifactId>maven-eclipse-plugin</artifactId>
242 <version>2.9</version>
243 <configuration>
244 <wtpversion>2.0</wtpversion>
245 <downloadSources>true</downloadSources>
246 </configuration>
247 </plugin>
248 <plugin>
249 <artifactId>maven-assembly-plugin</artifactId>
250 <configuration>
251 <archive>
252 <manifest>
253 <mainClass>fully.qualified.MainClass</mainClass>
254 </manifest>
255 </archive>
256 <descriptorRefs>
257 <descriptorRef>jar-with-dependencies</descriptorRef>
258 </descriptorRefs>
259 </configuration>
260 </plugin>
261 </plugins>
262 </build>
263
264 <repositories>
265 <repository>
266 <id>Apache Nexus</id>
267 <url>https://repository.apache.org/content/repositories/snapshots/</url>
268 <releases>
269 <enabled>false</enabled>
270 </releases>
271 <snapshots>
272 <enabled>true</enabled>
273 </snapshots>
274 </repository>
275 <repository>
276 <id>snapshots</id>
277 <url>http://anonsvn.icefaces.org/repo/maven2/releases/</url>
278 </repository>
279 <repository>
280 <id>java.net</id>
281 <url>http://download.java.net/maven/2</url>
282 </repository>
283
284 </repositories>
285 </project>