利用者向け情報

開発者向け情報

[cubby]/branches/2.0.x/cubby-apps/cubby-showcase/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2010 - (show annotations)
Tue Oct 6 04:04:08 2009 JST (3 years, 8 months ago) by baba
File MIME type: text/xml
File size: 11267 byte(s)
[maven-release-plugin] prepare for next development iteration
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/maven-v4_0_0.xsd">
3 <parent>
4 <artifactId>cubby-apps</artifactId>
5 <groupId>org.seasar.cubby</groupId>
6 <version>2.0.3-SNAPSHOT</version>
7 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <groupId>org.seasar.cubby</groupId>
10 <artifactId>cubby-showcase</artifactId>
11 <packaging>war</packaging>
12 <name>Cubby Showcase</name>
13 <build>
14 <finalName>cubby-showcase</finalName>
15 <plugins>
16 <plugin>
17 <artifactId>maven-compiler-plugin</artifactId>
18 <configuration>
19 <source>1.5</source>
20 <target>1.5</target>
21 <encoding>UTF-8</encoding>
22 </configuration>
23 </plugin>
24 <plugin>
25 <artifactId>maven-war-plugin</artifactId>
26 <configuration>
27 <webResources>
28 <webResource>
29 <directory>src</directory>
30 <targetPath>WEB-INF/src</targetPath>
31 </webResource>
32 </webResources>
33 </configuration>
34 </plugin>
35 <plugin>
36 <artifactId>maven-eclipse-plugin</artifactId>
37 <configuration>
38 <wtpversion>2.0</wtpversion>
39 <downloadSources>true</downloadSources>
40 <downloadJavadocs>true</downloadJavadocs>
41 <additionalConfig>
42 <file>
43 <name>.settings/org.eclipse.core.resources.prefs</name>
44 <content>
45 <![CDATA[
46 eclipse.preferences.version=1
47 encoding/<project>=UTF-8
48 ]]>
49 </content>
50 </file>
51 <file>
52 <name>.settings/org.eclipse.core.runtime.prefs</name>
53 <content>
54 <![CDATA[
55 eclipse.preferences.version=1
56 line.separator=\n
57 ]]>
58 </content>
59 </file>
60 </additionalConfig>
61 </configuration>
62 </plugin>
63 <plugin>
64 <groupId>org.codehaus.mojo</groupId>
65 <artifactId>selenium-maven-plugin</artifactId>
66 <version>1.0-beta-3</version>
67 <configuration>
68 <background>true</background>
69 <suite>src/test/selenium/00_cubby_test_suite.html</suite>
70 <startURL>http://localhost:8080</startURL>
71 <multiWindow>true</multiWindow>
72 </configuration>
73 </plugin>
74 <plugin>
75 <groupId>org.codehaus.mojo</groupId>
76 <artifactId>tomcat-maven-plugin</artifactId>
77 </plugin>
78 <plugin>
79 <groupId>org.mortbay.jetty</groupId>
80 <artifactId>maven-jetty-plugin</artifactId>
81 </plugin>
82 </plugins>
83 </build>
84 <repositories>
85 <repository>
86 <id>maven.seasar.org</id>
87 <name>The Seasar Foundation Maven2 Repository</name>
88 <url>http://maven.seasar.org/maven2</url>
89 </repository>
90 <repository>
91 <id>maven-snapshot.seasar.org</id>
92 <name>The Seasar Foundation Maven2 Snapshot Repository</name>
93 <url>http://maven.seasar.org/maven2-snapshot</url>
94 </repository>
95 <repository>
96 <id>apache.incubating</id>
97 <name>Apache Incubating Repository</name>
98 <url>http://people.apache.org/repo/m2-incubating-repository/</url>
99 </repository>
100 </repositories>
101 <dependencies>
102 <dependency>
103 <groupId>junit</groupId>
104 <artifactId>junit</artifactId>
105 <version>4.6</version>
106 <scope>test</scope>
107 </dependency>
108 <dependency>
109 <groupId>javax.servlet</groupId>
110 <artifactId>jstl</artifactId>
111 <version>1.2</version>
112 </dependency>
113 <dependency>
114 <groupId>org.seasar.cubby</groupId>
115 <artifactId>cubby-s2</artifactId>
116 <version>2.0.2</version>
117 </dependency>
118 <dependency>
119 <groupId>org.seasar.cubby</groupId>
120 <artifactId>cubby-gson</artifactId>
121 <version>2.0.2</version>
122 </dependency>
123 <dependency>
124 <groupId>org.seasar.cubby</groupId>
125 <artifactId>cubby-oval</artifactId>
126 <version>2.0.2</version>
127 </dependency>
128 <dependency>
129 <groupId>org.seasar.cubby</groupId>
130 <artifactId>cubby-admin</artifactId>
131 <version>2.0.2</version>
132 </dependency>
133 <dependency>
134 <groupId>org.seasar.container</groupId>
135 <artifactId>s2-framework</artifactId>
136 <version>2.4.38</version>
137 <exclusions>
138 <exclusion>
139 <groupId>commons-logging</groupId>
140 <artifactId>commons-logging</artifactId>
141 </exclusion>
142 <exclusion>
143 <groupId>log4j</groupId>
144 <artifactId>log4j</artifactId>
145 </exclusion>
146 </exclusions>
147 </dependency>
148 <dependency>
149 <groupId>org.seasar.container</groupId>
150 <artifactId>s2-extension</artifactId>
151 <version>2.4.38</version>
152 <exclusions>
153 <exclusion>
154 <groupId>commons-logging</groupId>
155 <artifactId>commons-logging</artifactId>
156 </exclusion>
157 <exclusion>
158 <groupId>log4j</groupId>
159 <artifactId>log4j</artifactId>
160 </exclusion>
161 </exclusions>
162 </dependency>
163 <dependency>
164 <groupId>org.seasar.container</groupId>
165 <artifactId>s2-tiger</artifactId>
166 <version>2.4.38</version>
167 </dependency>
168 <dependency>
169 <groupId>org.seasar.dao</groupId>
170 <artifactId>s2-dao</artifactId>
171 <version>1.0.50</version>
172 </dependency>
173 <dependency>
174 <groupId>org.seasar.dao</groupId>
175 <artifactId>s2-dao-tiger</artifactId>
176 <version>1.0.50</version>
177 </dependency>
178 <dependency>
179 <groupId>org.apache.geronimo.specs</groupId>
180 <artifactId>geronimo-servlet_2.5_spec</artifactId>
181 <version>1.2</version>
182 <scope>provided</scope>
183 </dependency>
184 <dependency>
185 <groupId>org.apache.geronimo.specs</groupId>
186 <artifactId>geronimo-jsp_2.1_spec</artifactId>
187 <version>1.0.1</version>
188 <scope>provided</scope>
189 </dependency>
190 <dependency>
191 <groupId>org.apache.geronimo.specs</groupId>
192 <artifactId>geronimo-el_1.0_spec</artifactId>
193 <version>1.0.1</version>
194 <scope>provided</scope>
195 </dependency>
196 <dependency>
197 <groupId>org.apache.geronimo.specs</groupId>
198 <artifactId>geronimo-jta_1.1_spec</artifactId>
199 <version>1.0</version>
200 </dependency>
201 <dependency>
202 <groupId>com.h2database</groupId>
203 <artifactId>h2</artifactId>
204 <version>1.0.64</version>
205 </dependency>
206 <dependency>
207 <groupId>org.seasar.mayaa</groupId>
208 <artifactId>mayaa</artifactId>
209 <version>1.1.26</version>
210 <exclusions>
211 <exclusion>
212 <groupId>commons-logging</groupId>
213 <artifactId>commons-logging</artifactId>
214 </exclusion>
215 </exclusions>
216 </dependency>
217 <dependency>
218 <groupId>org.apache.abdera</groupId>
219 <artifactId>abdera-parser</artifactId>
220 <version>0.4.0-incubating</version>
221 <exclusions>
222 <exclusion>
223 <groupId>commons-logging</groupId>
224 <artifactId>commons-logging</artifactId>
225 </exclusion>
226 </exclusions>
227 </dependency>
228 <dependency>
229 <groupId>org.apache.abdera</groupId>
230 <artifactId>abdera-server</artifactId>
231 <version>0.4.0-incubating</version>
232 <exclusions>
233 <exclusion>
234 <groupId>javax.servlet</groupId>
235 <artifactId>servlet-api</artifactId>
236 </exclusion>
237 <exclusion>
238 <groupId>commons-logging</groupId>
239 <artifactId>commons-logging</artifactId>
240 </exclusion>
241 </exclusions>
242 </dependency>
243 <dependency>
244 <groupId>org.slf4j</groupId>
245 <artifactId>jcl-over-slf4j</artifactId>
246 <version>1.5.6</version>
247 </dependency>
248 <dependency>
249 <groupId>ch.qos.logback</groupId>
250 <artifactId>logback-core</artifactId>
251 <version>0.9.15</version>
252 <scope>runtime</scope>
253 </dependency>
254 <dependency>
255 <groupId>ch.qos.logback</groupId>
256 <artifactId>logback-classic</artifactId>
257 <version>0.9.15</version>
258 <scope>runtime</scope>
259 </dependency>
260 </dependencies>
261 <profiles>
262 <profile>
263 <id>development</id>
264 <activation>
265 <activeByDefault>true</activeByDefault>
266 </activation>
267 </profile>
268 <profile>
269 <id>production</id>
270 <activation>
271 <activeByDefault>false</activeByDefault>
272 </activation>
273 <properties>
274 <maven.test.skip>true</maven.test.skip>
275 </properties>
276 <build>
277 <resources>
278 <resource>
279 <directory>src/production/resources</directory>
280 </resource>
281 <resource>
282 <directory>src/main/resources</directory>
283 </resource>
284 </resources>
285 </build>
286 </profile>
287 <profile>
288 <id>tomcat6</id>
289 <activation>
290 <activeByDefault>true</activeByDefault>
291 </activation>
292 <build>
293 <plugins>
294 <plugin>
295 <groupId>org.codehaus.cargo</groupId>
296 <artifactId>cargo-maven2-plugin</artifactId>
297 <configuration>
298 <container>
299 <containerId>tomcat6x</containerId>
300 <!--
301 <type>embedded</type>
302 -->
303 <!-- for use -Dtomcat.home=c:\usr\local...
304 <type>installed</type>
305 <home>${tomcat.home}</home>
306 -->
307 <zipUrlInstaller>
308 <url>
309 http://archive.apache.org/dist/tomcat/tomcat-6/v6.0.18/bin/apache-tomcat-6.0.18.zip
310 </url>
311 <installDir>${project.build.directory}</installDir>
312 </zipUrlInstaller>
313 <output>
314 ${project.build.directory}/tomcat6x.log
315 </output>
316 <log>${project.build.directory}/cargo.log</log>
317 </container>
318 </configuration>
319 <executions>
320 <execution>
321 <id>start-container</id>
322 <phase>pre-integration-test</phase>
323 <goals>
324 <goal>start</goal>
325 </goals>
326 <configuration>
327 <wait>false</wait>
328 </configuration>
329 </execution>
330 <execution>
331 <id>stop-container</id>
332 <phase>post-integration-test</phase>
333 <goals>
334 <goal>stop</goal>
335 </goals>
336 </execution>
337 </executions>
338 </plugin>
339 <plugin>
340 <groupId>org.codehaus.mojo</groupId>
341 <artifactId>selenium-maven-plugin</artifactId>
342 <version>1.0-beta-3</version>
343 <executions>
344 <execution>
345 <id>selenese-firefox</id>
346 <phase>integration-test</phase>
347 <goals>
348 <goal>selenese</goal>
349 </goals>
350 <configuration>
351 <browser>*firefox</browser>
352 </configuration>
353 </execution>
354 </executions>
355 </plugin>
356 </plugins>
357 </build>
358 </profile>
359 </profiles>
360 </project>

Repository Top
ViewVC Help  
ViewVC logotype
Powered by ViewVC