|
9
|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
|
|
2 |
<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"> |
|
|
3 |
|
|
|
4 |
<modelVersion>4.0.0</modelVersion> |
|
|
5 |
<groupId>org.iri_research.renkan</groupId> |
|
|
6 |
<artifactId>renkan</artifactId> |
|
|
7 |
<version>0.1</version> |
|
|
8 |
<packaging>war</packaging> |
|
|
9 |
|
|
|
10 |
<properties> |
|
|
11 |
<coweb-version>0.8.3</coweb-version> |
|
|
12 |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
13 |
</properties> |
|
|
14 |
|
|
|
15 |
<build> |
|
|
16 |
<defaultGoal>install</defaultGoal> |
|
|
17 |
<plugins> |
|
|
18 |
<plugin> |
|
|
19 |
<groupId>org.apache.maven.plugins</groupId> |
|
|
20 |
<artifactId>maven-compiler-plugin</artifactId> |
|
|
21 |
<version>2.3.2</version> |
|
|
22 |
<configuration> |
|
|
23 |
<source>1.6</source> |
|
|
24 |
<target>1.6</target> |
|
|
25 |
</configuration> |
|
|
26 |
</plugin> |
|
|
27 |
|
|
|
28 |
<plugin> |
|
|
29 |
<groupId>org.mortbay.jetty</groupId> |
|
|
30 |
<artifactId>jetty-maven-plugin</artifactId> |
|
|
31 |
<version>7.3.0.v20110203</version> |
|
|
32 |
<configuration> |
|
|
33 |
<scanIntervalSeconds>10</scanIntervalSeconds> |
|
|
34 |
<webAppConfig> |
|
|
35 |
<contextPath>/renkan</contextPath> |
|
|
36 |
</webAppConfig> |
|
|
37 |
</configuration> |
|
|
38 |
</plugin> |
|
|
39 |
|
|
|
40 |
<plugin> |
|
|
41 |
<artifactId>maven-war-plugin</artifactId> |
|
|
42 |
<version>2.1.1</version> |
|
|
43 |
<configuration> |
|
|
44 |
<overlays> |
|
|
45 |
<overlay> |
|
|
46 |
<groupId>org.opencoweb</groupId> |
|
|
47 |
<artifactId>coweb-javascript</artifactId> |
|
|
48 |
<type>war</type> |
|
|
49 |
<excludes> |
|
|
50 |
<exclude>META-INF/**</exclude> |
|
|
51 |
<exclude>WEB-INF/**</exclude> |
|
|
52 |
</excludes> |
|
|
53 |
<targetPath>lib</targetPath> |
|
|
54 |
</overlay> |
|
|
55 |
</overlays> |
|
|
56 |
</configuration> |
|
|
57 |
</plugin> |
|
|
58 |
</plugins> |
|
|
59 |
</build> |
|
|
60 |
|
|
|
61 |
<dependencies> |
|
|
62 |
<dependency> |
|
|
63 |
<groupId>org.opencoweb</groupId> |
|
|
64 |
<artifactId>coweb-bots</artifactId> |
|
|
65 |
<version>${coweb-version}</version> |
|
|
66 |
</dependency> |
|
|
67 |
<dependency> |
|
|
68 |
<groupId>org.opencoweb</groupId> |
|
|
69 |
<artifactId>coweb-server</artifactId> |
|
|
70 |
<version>${coweb-version}</version> |
|
|
71 |
</dependency> |
|
|
72 |
<dependency> |
|
|
73 |
<groupId>org.opencoweb</groupId> |
|
|
74 |
<artifactId>coweb-javascript</artifactId> |
|
|
75 |
<version>${coweb-version}</version> |
|
|
76 |
<type>war</type> |
|
|
77 |
</dependency> |
|
|
78 |
<dependency> |
|
|
79 |
<groupId>com.sun.jersey</groupId> |
|
|
80 |
<artifactId>jersey-server</artifactId> |
|
|
81 |
<version>1.13</version> |
|
|
82 |
</dependency> |
|
|
83 |
<dependency> |
|
|
84 |
<groupId>com.sun.jersey</groupId> |
|
|
85 |
<artifactId>jersey-servlet</artifactId> |
|
|
86 |
<version>1.13</version> |
|
|
87 |
</dependency> |
|
|
88 |
<dependency> |
|
|
89 |
<groupId>org.mongodb</groupId> |
|
|
90 |
<artifactId>mongo-java-driver</artifactId> |
|
|
91 |
<version>2.8.0</version> |
|
|
92 |
</dependency> |
|
|
93 |
</dependencies> |
|
|
94 |
<organization> |
|
|
95 |
<name>IRI</name> |
|
|
96 |
<url>http://www.iri.centrepompidou.fr</url> |
|
|
97 |
</organization> |
|
|
98 |
</project> |