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>
|
|
|
|
<org.springframework.version>3.0.5.RELEASE</org.springframework.version>
|
|
|
|
</properties>
|
2012-03-04 11:07:18 +00:00
|
|
|
|
2012-03-01 23:51:12 +00:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>com.springsource.repository.bundles.release</id>
|
|
|
|
<name>EBR Spring Release Repository</name>
|
|
|
|
<url>http://repository.springsource.com/maven/bundles/release</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2012-03-04 11:07:18 +00:00
|
|
|
|
2012-02-25 15:55:47 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish</groupId>
|
|
|
|
<artifactId>javax.servlet</artifactId>
|
|
|
|
<version>3.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>1.6.4</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>1.6.4</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.16</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.grizzly</groupId>
|
|
|
|
<artifactId>grizzly-websockets</artifactId>
|
|
|
|
<version>1.9.46</version>
|
|
|
|
</dependency>
|
2012-02-26 01:11:41 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.json-lib</groupId>
|
|
|
|
<artifactId>json-lib</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<classifier>jdk15</classifier>
|
|
|
|
</dependency>
|
2012-03-01 23:51:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
<version>${org.springframework.version}</version>
|
|
|
|
</dependency>
|
2012-03-04 11:07:18 +00:00
|
|
|
|
2012-03-01 23:51:12 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>${org.springframework.version}</version>
|
|
|
|
</dependency>
|
2012-03-04 11:07:18 +00:00
|
|
|
|
2012-03-01 23:51:12 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
<version>${org.springframework.version}</version>
|
|
|
|
</dependency>
|
2012-02-25 15:55:47 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
|
|
|
</configuration>
|
2012-03-04 11:07:18 +00:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<version>2.9.1</version>
|
|
|
|
</plugin>
|
|
|
|
<!--
|
2012-03-01 23:51:12 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.glassfish.maven.plugin</groupId>
|
|
|
|
<artifactId>maven-glassfish-plugin</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
<configuration>
|
|
|
|
<glassfishDirectory>/opt/glassfish3/glassfish/</glassfishDirectory>
|
|
|
|
<user>admin</user>
|
|
|
|
<adminPassword>foobar2342</adminPassword>
|
|
|
|
<domain>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<adminPort>4848</adminPort>
|
|
|
|
<httpPort>8080</httpPort>
|
|
|
|
<httpsPort>8443</httpsPort>
|
|
|
|
</domain>
|
|
|
|
<components>
|
|
|
|
<component>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<artifact>${project.build.directory}/${project.build.finalName}.war</artifact>
|
|
|
|
</component>
|
|
|
|
</components>
|
|
|
|
</configuration>
|
|
|
|
|
|
|
|
</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>
|