2012-02-25 15:55:47 +00:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2012-03-01 23:51:12 +00:00
|
|
|
<groupId>de.ctdo</groupId>
|
|
|
|
<artifactId>bunti.server</artifactId>
|
2012-02-25 15:55:47 +00:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<packaging>war</packaging>
|
2012-03-04 11:07:18 +00:00
|
|
|
|
2012-03-01 23:51:12 +00:00
|
|
|
<properties>
|
2012-03-10 22:57:15 +00:00
|
|
|
<org.springframework.version>3.1.0.RELEASE</org.springframework.version>
|
2012-03-11 23:18:20 +00:00
|
|
|
<jettyVersion>7.2.0.v20101020</jettyVersion>
|
2012-03-09 22:37:26 +00:00
|
|
|
<org.slf4j.version>1.6.4</org.slf4j.version>
|
2012-03-01 23:51:12 +00:00
|
|
|
</properties>
|
2012-03-04 11:07:18 +00:00
|
|
|
|
2012-03-01 23:51:12 +00:00
|
|
|
<repositories>
|
2012-03-09 22:37:26 +00:00
|
|
|
<repository>
|
|
|
|
<id>org.jboss.repository.release</id>
|
|
|
|
<name>JBoss Maven Release Repository</name>
|
|
|
|
<url>https://repository.jboss.org/nexus/content/repositories/releases</url>
|
|
|
|
<snapshots><enabled>false</enabled></snapshots>
|
|
|
|
</repository>
|
2012-03-10 22:57:15 +00:00
|
|
|
|
2012-03-10 20:38:05 +00:00
|
|
|
<repository>
|
|
|
|
<id>org.eclipse.repository.development</id>
|
|
|
|
<name>Jetty Repo</name>
|
|
|
|
<url>http://oss.sonatype.org/content/groups/jetty/</url>
|
|
|
|
</repository>
|
2012-03-01 23:51:12 +00:00
|
|
|
</repositories>
|
2012-03-04 11:07:18 +00:00
|
|
|
|
2012-02-25 15:55:47 +00:00
|
|
|
<dependencies>
|
2012-03-09 22:37:26 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>${org.springframework.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<!-- Exclude Commons Logging in favor of SLF4j -->
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
<version>${org.springframework.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
2012-02-25 15:55:47 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2012-03-09 22:37:26 +00:00
|
|
|
<version>${org.slf4j.version}</version>
|
2012-02-25 15:55:47 +00:00
|
|
|
</dependency>
|
2012-03-09 22:37:26 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
<version>${org.slf4j.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-02-25 15:55:47 +00:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
2012-03-09 22:37:26 +00:00
|
|
|
<version>${org.slf4j.version}</version>
|
|
|
|
<scope>runtime</scope>
|
2012-02-25 15:55:47 +00:00
|
|
|
</dependency>
|
2012-03-09 22:37:26 +00:00
|
|
|
<dependency>
|
2012-02-25 15:55:47 +00:00
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.16</version>
|
2012-03-09 22:37:26 +00:00
|
|
|
<scope>runtime</scope>
|
2012-02-25 15:55:47 +00:00
|
|
|
</dependency>
|
2012-03-09 22:37:26 +00:00
|
|
|
|
2012-03-01 23:51:12 +00:00
|
|
|
|
2012-03-07 23:04:03 +00:00
|
|
|
<dependency>
|
2012-03-09 22:37:26 +00:00
|
|
|
<groupId>javax.validation</groupId>
|
|
|
|
<artifactId>validation-api</artifactId>
|
|
|
|
<version>1.0.0.GA</version>
|
2012-03-07 23:04:03 +00:00
|
|
|
</dependency>
|
|
|
|
|
2012-03-09 22:37:26 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
<version>4.1.0.Final</version>
|
|
|
|
</dependency>
|
2012-03-01 23:51:12 +00:00
|
|
|
|
2012-03-20 17:01:54 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-entitymanager</artifactId>
|
|
|
|
<version>3.6.7.Final</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
<version>1.8.0.10</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
2012-03-09 22:37:26 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
<version>1.6.2</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2012-03-04 11:07:18 +00:00
|
|
|
|
2012-03-09 22:37:26 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
|
|
<version>1.6.4</version>
|
|
|
|
</dependency>
|
2012-03-04 11:07:18 +00:00
|
|
|
|
2012-03-07 18:21:53 +00:00
|
|
|
|
|
|
|
<dependency>
|
2012-03-09 22:37:26 +00:00
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
|
|
<artifactId>jsp-api</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>jstl</artifactId>
|
|
|
|
<version>1.2</version>
|
2012-03-07 18:21:53 +00:00
|
|
|
</dependency>
|
|
|
|
|
2012-03-06 00:31:38 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.10</version>
|
|
|
|
</dependency>
|
2012-03-09 22:37:26 +00:00
|
|
|
|
2012-03-13 23:57:00 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.easymock</groupId>
|
|
|
|
<artifactId>easymock</artifactId>
|
|
|
|
<version>3.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2012-03-07 18:21:53 +00:00
|
|
|
<dependency>
|
2012-03-09 22:37:26 +00:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${jettyVersion}</version>
|
2012-03-08 01:10:59 +00:00
|
|
|
</dependency>
|
2012-03-20 17:01:54 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-orm</artifactId>
|
|
|
|
<version>3.0.6.RELEASE</version>
|
|
|
|
</dependency>
|
2012-03-09 22:37:26 +00:00
|
|
|
|
2012-03-07 18:21:53 +00:00
|
|
|
</dependencies>
|
2012-02-25 15:55:47 +00:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
|
|
|
</configuration>
|
2012-03-10 22:57:15 +00:00
|
|
|
<version>2.3.2</version>
|
2012-03-04 11:07:18 +00:00
|
|
|
</plugin>
|
2012-03-09 22:37:26 +00:00
|
|
|
|
2012-03-11 23:18:20 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>install</id>
|
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sources</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2012-03-07 23:04:03 +00:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
|
|
|
<version>${jettyVersion}</version>
|
2012-03-09 22:37:26 +00:00
|
|
|
<configuration>
|
|
|
|
<scanIntervalSeconds>5</scanIntervalSeconds>
|
|
|
|
</configuration>
|
2012-03-07 23:04:03 +00:00
|
|
|
</plugin>
|
|
|
|
|
2012-02-25 15:55:47 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2012-03-01 23:51:12 +00:00
|
|
|
<url>http://bunti.ctdo.de:8080/bunti/</url>
|
|
|
|
<organization>
|
|
|
|
<url>www.ctdo.de</url>
|
|
|
|
<name>Chaostreff Dortmund</name>
|
|
|
|
</organization>
|
2012-02-25 15:55:47 +00:00
|
|
|
</project>
|