|
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> |
|
45
|
11 |
<coweb-version>0.8.3.1</coweb-version> |
|
|
12 |
<jersey-version>1.14</jersey-version> |
|
|
13 |
<spring-version>3.1.2.RELEASE</spring-version> |
|
|
14 |
<junit.version>4.10</junit.version> |
|
9
|
15 |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
16 |
</properties> |
|
|
17 |
|
|
|
18 |
<build> |
|
|
19 |
<defaultGoal>install</defaultGoal> |
|
|
20 |
<plugins> |
|
|
21 |
<plugin> |
|
|
22 |
<groupId>org.apache.maven.plugins</groupId> |
|
|
23 |
<artifactId>maven-compiler-plugin</artifactId> |
|
|
24 |
<version>2.3.2</version> |
|
|
25 |
<configuration> |
|
|
26 |
<source>1.6</source> |
|
|
27 |
<target>1.6</target> |
|
|
28 |
</configuration> |
|
|
29 |
</plugin> |
|
|
30 |
|
|
|
31 |
<plugin> |
|
|
32 |
<groupId>org.mortbay.jetty</groupId> |
|
|
33 |
<artifactId>jetty-maven-plugin</artifactId> |
|
|
34 |
<version>7.3.0.v20110203</version> |
|
|
35 |
<configuration> |
|
|
36 |
<scanIntervalSeconds>10</scanIntervalSeconds> |
|
|
37 |
<webAppConfig> |
|
|
38 |
<contextPath>/renkan</contextPath> |
|
|
39 |
</webAppConfig> |
|
|
40 |
</configuration> |
|
|
41 |
</plugin> |
|
|
42 |
|
|
|
43 |
<plugin> |
|
|
44 |
<artifactId>maven-war-plugin</artifactId> |
|
|
45 |
<version>2.1.1</version> |
|
|
46 |
<configuration> |
|
|
47 |
<overlays> |
|
|
48 |
<overlay> |
|
|
49 |
<groupId>org.opencoweb</groupId> |
|
|
50 |
<artifactId>coweb-javascript</artifactId> |
|
|
51 |
<type>war</type> |
|
|
52 |
<excludes> |
|
|
53 |
<exclude>META-INF/**</exclude> |
|
|
54 |
<exclude>WEB-INF/**</exclude> |
|
|
55 |
</excludes> |
|
|
56 |
<targetPath>lib</targetPath> |
|
|
57 |
</overlay> |
|
45
|
58 |
<overlay> |
|
|
59 |
<groupId>org.opencoweb.cowebx</groupId> |
|
|
60 |
<artifactId>cowebx-widgets-dojo</artifactId> |
|
|
61 |
<type>war</type> |
|
|
62 |
<excludes> |
|
|
63 |
<exclude>META-INF/**</exclude> |
|
|
64 |
<exclude>WEB-INF/**</exclude> |
|
|
65 |
</excludes> |
|
|
66 |
<targetPath>lib/cowebx/dojo</targetPath> |
|
|
67 |
</overlay> |
|
9
|
68 |
</overlays> |
|
13
|
69 |
<webResources> |
|
|
70 |
<resource> |
|
|
71 |
<directory>../client</directory> |
|
|
72 |
<excludes> |
|
|
73 |
<exclude>**/*.html</exclude> |
|
|
74 |
<exclude>**/data</exclude> |
|
|
75 |
</excludes> |
|
|
76 |
</resource> |
|
45
|
77 |
<resource> |
|
|
78 |
<directory>src/main/web-resources</directory> |
|
|
79 |
</resource> |
|
13
|
80 |
</webResources> |
|
9
|
81 |
</configuration> |
|
|
82 |
</plugin> |
|
|
83 |
</plugins> |
|
|
84 |
</build> |
|
45
|
85 |
<repositories> |
|
|
86 |
<repository> |
|
|
87 |
<id>spring-maven-release</id> |
|
|
88 |
<name>Spring Maven Release Repository</name> |
|
|
89 |
<url>http://maven.springframework.org/release</url> |
|
|
90 |
</repository> |
|
|
91 |
<repository> |
|
|
92 |
<id>spring-maven-milestone</id> |
|
|
93 |
<name>Spring Maven MILESTONE Repository</name> |
|
|
94 |
<url>http://maven.springframework.org/milestone</url> |
|
|
95 |
</repository> |
|
|
96 |
</repositories> |
|
9
|
97 |
<dependencies> |
|
45
|
98 |
<dependency> |
|
|
99 |
<groupId>javax.inject</groupId> |
|
|
100 |
<artifactId>javax.inject</artifactId> |
|
|
101 |
<version>1</version> |
|
|
102 |
</dependency> |
|
|
103 |
<dependency> |
|
|
104 |
<groupId>javax.servlet</groupId> |
|
|
105 |
<artifactId>servlet-api</artifactId> |
|
|
106 |
<version>2.5</version> |
|
|
107 |
</dependency> |
|
|
108 |
<dependency> |
|
|
109 |
<groupId>org.cometd.java</groupId> |
|
|
110 |
<artifactId>cometd-java-annotations</artifactId> |
|
|
111 |
<version>2.5.0</version> |
|
|
112 |
</dependency> |
|
9
|
113 |
<dependency> |
|
|
114 |
<groupId>org.opencoweb</groupId> |
|
|
115 |
<artifactId>coweb-bots</artifactId> |
|
|
116 |
<version>${coweb-version}</version> |
|
|
117 |
</dependency> |
|
|
118 |
<dependency> |
|
|
119 |
<groupId>org.opencoweb</groupId> |
|
|
120 |
<artifactId>coweb-server</artifactId> |
|
|
121 |
<version>${coweb-version}</version> |
|
|
122 |
</dependency> |
|
|
123 |
<dependency> |
|
|
124 |
<groupId>org.opencoweb</groupId> |
|
|
125 |
<artifactId>coweb-javascript</artifactId> |
|
|
126 |
<version>${coweb-version}</version> |
|
|
127 |
<type>war</type> |
|
|
128 |
</dependency> |
|
|
129 |
<dependency> |
|
45
|
130 |
<groupId>org.opencoweb.cowebx</groupId> |
|
|
131 |
<artifactId>cowebx-widgets-dojo</artifactId> |
|
|
132 |
<version>${coweb-version}</version> |
|
|
133 |
<type>war</type> |
|
|
134 |
</dependency> |
|
|
135 |
<dependency> |
|
9
|
136 |
<groupId>com.sun.jersey</groupId> |
|
|
137 |
<artifactId>jersey-server</artifactId> |
|
45
|
138 |
<version>${jersey-version}</version> |
|
9
|
139 |
</dependency> |
|
|
140 |
<dependency> |
|
45
|
141 |
<groupId>com.sun.jersey.contribs</groupId> |
|
|
142 |
<artifactId>jersey-spring</artifactId> |
|
|
143 |
<version>${jersey-version}</version> |
|
|
144 |
<exclusions> |
|
|
145 |
<exclusion> |
|
|
146 |
<groupId>org.springframework</groupId> |
|
|
147 |
<artifactId>spring-context</artifactId> |
|
|
148 |
</exclusion> |
|
|
149 |
<exclusion> |
|
|
150 |
<groupId>org.springframework</groupId> |
|
|
151 |
<artifactId>spring-beans</artifactId> |
|
|
152 |
</exclusion> |
|
|
153 |
<exclusion> |
|
|
154 |
<groupId>org.springframework</groupId> |
|
|
155 |
<artifactId>spring-core</artifactId> |
|
|
156 |
</exclusion> |
|
|
157 |
</exclusions> |
|
9
|
158 |
</dependency> |
|
|
159 |
<dependency> |
|
|
160 |
<groupId>org.mongodb</groupId> |
|
|
161 |
<artifactId>mongo-java-driver</artifactId> |
|
45
|
162 |
<version>2.9.0</version> |
|
22
|
163 |
</dependency> |
|
|
164 |
<dependency> |
|
|
165 |
<groupId>org.slf4j</groupId> |
|
|
166 |
<artifactId>slf4j-log4j12</artifactId> |
|
|
167 |
<version>1.6.6</version> |
|
|
168 |
</dependency> |
|
45
|
169 |
<dependency> |
|
|
170 |
<groupId>org.springframework</groupId> |
|
|
171 |
<artifactId>spring-core</artifactId> |
|
|
172 |
<version>${spring-version}</version> |
|
|
173 |
</dependency> |
|
|
174 |
<dependency> |
|
|
175 |
<groupId>org.springframework</groupId> |
|
|
176 |
<artifactId>spring-context</artifactId> |
|
|
177 |
<version>${spring-version}</version> |
|
|
178 |
</dependency> |
|
|
179 |
<dependency> |
|
|
180 |
<groupId>org.springframework</groupId> |
|
|
181 |
<artifactId>spring-web</artifactId> |
|
|
182 |
<version>${spring-version}</version> |
|
|
183 |
</dependency> |
|
|
184 |
<dependency> |
|
|
185 |
<groupId>org.springframework</groupId> |
|
|
186 |
<artifactId>spring-test</artifactId> |
|
|
187 |
<version>${spring-version}</version> |
|
|
188 |
</dependency> |
|
|
189 |
<dependency> |
|
|
190 |
<groupId>org.springframework.data</groupId> |
|
|
191 |
<artifactId>spring-data-commons-core</artifactId> |
|
|
192 |
<version>1.4.0.RELEASE</version> |
|
|
193 |
</dependency> |
|
|
194 |
<dependency> |
|
|
195 |
<groupId>org.springframework.data</groupId> |
|
|
196 |
<artifactId>spring-data-jpa</artifactId> |
|
|
197 |
<version>1.2.0.RELEASE</version> |
|
|
198 |
</dependency> |
|
|
199 |
<dependency> |
|
|
200 |
<groupId>org.springframework.data</groupId> |
|
|
201 |
<artifactId>spring-data-mongodb</artifactId> |
|
|
202 |
<version>1.1.0.RELEASE</version> |
|
|
203 |
</dependency> |
|
|
204 |
<dependency> |
|
|
205 |
<groupId>javax.persistence</groupId> |
|
|
206 |
<artifactId>persistence-api</artifactId> |
|
|
207 |
<version>1.0.2</version> |
|
|
208 |
</dependency> |
|
|
209 |
<dependency> |
|
|
210 |
<groupId>junit</groupId> |
|
|
211 |
<artifactId>junit</artifactId> |
|
|
212 |
<version>${junit.version}</version> |
|
|
213 |
<scope>test</scope> |
|
|
214 |
</dependency> |
|
9
|
215 |
</dependencies> |
|
|
216 |
<organization> |
|
|
217 |
<name>IRI</name> |
|
|
218 |
<url>http://www.iri.centrepompidou.fr</url> |
|
|
219 |
</organization> |
|
|
220 |
</project> |