<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>org.iri_research.renkan</groupId>
<artifactId>renkan</artifactId>
<version>0.1</version>
<packaging>war</packaging>
<properties>
<coweb-version>0.8.3</coweb-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<defaultGoal>install</defaultGoal>
<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>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>7.3.0.v20110203</version>
<configuration>
<scanIntervalSeconds>10</scanIntervalSeconds>
<webAppConfig>
<contextPath>/renkan</contextPath>
</webAppConfig>
</configuration>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<overlays>
<overlay>
<groupId>org.opencoweb</groupId>
<artifactId>coweb-javascript</artifactId>
<type>war</type>
<excludes>
<exclude>META-INF/**</exclude>
<exclude>WEB-INF/**</exclude>
</excludes>
<targetPath>lib</targetPath>
</overlay>
</overlays>
<webResources>
<resource>
<directory>../client</directory>
<excludes>
<exclude>**/*.html</exclude>
<exclude>**/data</exclude>
</excludes>
</resource>
</webResources>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.opencoweb</groupId>
<artifactId>coweb-bots</artifactId>
<version>${coweb-version}</version>
</dependency>
<dependency>
<groupId>org.opencoweb</groupId>
<artifactId>coweb-server</artifactId>
<version>${coweb-version}</version>
</dependency>
<dependency>
<groupId>org.opencoweb</groupId>
<artifactId>coweb-javascript</artifactId>
<version>${coweb-version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-server</artifactId>
<version>1.13</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-servlet</artifactId>
<version>1.13</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>2.8.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.6.6</version>
</dependency>
</dependencies>
<organization>
<name>IRI</name>
<url>http://www.iri.centrepompidou.fr</url>
</organization>
</project>