利用者向け情報

開発者向け情報

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2037 - (show annotations)
Wed Nov 4 10:27:55 2009 JST (3 years, 6 months ago) by baba
File MIME type: text/xml
File size: 11178 byte(s)
maven-selenium-plugnのバージョン指定を外した
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</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 <configuration>
67 <background>true</background>
68 <suite>src/test/selenium/00_cubby_test_suite.html</suite>
69 <startURL>http://localhost:8080</startURL>
70 <multiWindow>true</multiWindow>
71 </configuration>
72 </plugin>
73 <plugin>
74 <groupId>org.codehaus.mojo</groupId>
75 <artifactId>tomcat-maven-plugin</artifactId>
76 </plugin>
77 <plugin>
78 <groupId>org.mortbay.jetty</groupId>
79 <artifactId>maven-jetty-plugin</artifactId>
80 </plugin>
81 </plugins>
82 </build>
83 <repositories>
84 <repository>
85 <id>maven.seasar.org</id>
86 <name>The Seasar Foundation Maven2 Repository</name>
87 <url>http://maven.seasar.org/maven2</url>
88 </repository>
89 <repository>
90 <id>maven-snapshot.seasar.org</id>
91 <name>The Seasar Foundation Maven2 Snapshot Repository</name>
92 <url>http://maven.seasar.org/maven2-snapshot</url>
93 </repository>
94 <repository>
95 <id>apache.incubating</id>
96 <name>Apache Incubating Repository</name>
97 <url>http://people.apache.org/repo/m2-incubating-repository/</url>
98 </repository>
99 </repositories>
100 <dependencies>
101 <dependency>
102 <groupId>junit</groupId>
103 <artifactId>junit</artifactId>
104 <version>4.6</version>
105 <scope>test</scope>
106 </dependency>
107 <dependency>
108 <groupId>javax.servlet</groupId>
109 <artifactId>jstl</artifactId>
110 <version>1.2</version>
111 </dependency>
112 <dependency>
113 <groupId>org.seasar.cubby</groupId>
114 <artifactId>cubby-s2</artifactId>
115 <version>2.0.3</version>
116 </dependency>
117 <dependency>
118 <groupId>org.seasar.cubby</groupId>
119 <artifactId>cubby-gson</artifactId>
120 <version>2.0.3</version>
121 </dependency>
122 <dependency>
123 <groupId>org.seasar.cubby</groupId>
124 <artifactId>cubby-oval</artifactId>
125 <version>2.0.3</version>
126 </dependency>
127 <dependency>
128 <groupId>org.seasar.cubby</groupId>
129 <artifactId>cubby-admin</artifactId>
130 <version>2.0.3</version>
131 </dependency>
132 <dependency>
133 <groupId>org.seasar.container</groupId>
134 <artifactId>s2-framework</artifactId>
135 <version>2.4.38</version>
136 <exclusions>
137 <exclusion>
138 <groupId>commons-logging</groupId>
139 <artifactId>commons-logging</artifactId>
140 </exclusion>
141 <exclusion>
142 <groupId>log4j</groupId>
143 <artifactId>log4j</artifactId>
144 </exclusion>
145 </exclusions>
146 </dependency>
147 <dependency>
148 <groupId>org.seasar.container</groupId>
149 <artifactId>s2-extension</artifactId>
150 <version>2.4.38</version>
151 <exclusions>
152 <exclusion>
153 <groupId>commons-logging</groupId>
154 <artifactId>commons-logging</artifactId>
155 </exclusion>
156 <exclusion>
157 <groupId>log4j</groupId>
158 <artifactId>log4j</artifactId>
159 </exclusion>
160 </exclusions>
161 </dependency>
162 <dependency>
163 <groupId>org.seasar.container</groupId>
164 <artifactId>s2-tiger</artifactId>
165 <version>2.4.38</version>
166 </dependency>
167 <dependency>
168 <groupId>org.seasar.dao</groupId>
169 <artifactId>s2-dao</artifactId>
170 <version>1.0.50</version>
171 </dependency>
172 <dependency>
173 <groupId>org.seasar.dao</groupId>
174 <artifactId>s2-dao-tiger</artifactId>
175 <version>1.0.50</version>
176 </dependency>
177 <dependency>
178 <groupId>org.apache.geronimo.specs</groupId>
179 <artifactId>geronimo-servlet_2.5_spec</artifactId>
180 <version>1.2</version>
181 <scope>provided</scope>
182 </dependency>
183 <dependency>
184 <groupId>org.apache.geronimo.specs</groupId>
185 <artifactId>geronimo-jsp_2.1_spec</artifactId>
186 <version>1.0.1</version>
187 <scope>provided</scope>
188 </dependency>
189 <dependency>
190 <groupId>org.apache.geronimo.specs</groupId>
191 <artifactId>geronimo-el_1.0_spec</artifactId>
192 <version>1.0.1</version>
193 <scope>provided</scope>
194 </dependency>
195 <dependency>
196 <groupId>org.apache.geronimo.specs</groupId>
197 <artifactId>geronimo-jta_1.1_spec</artifactId>
198 <version>1.0</version>
199 </dependency>
200 <dependency>
201 <groupId>com.h2database</groupId>
202 <artifactId>h2</artifactId>
203 <version>1.0.64</version>
204 </dependency>
205 <dependency>
206 <groupId>org.seasar.mayaa</groupId>
207 <artifactId>mayaa</artifactId>
208 <version>1.1.26</version>
209 <exclusions>
210 <exclusion>
211 <groupId>commons-logging</groupId>
212 <artifactId>commons-logging</artifactId>
213 </exclusion>
214 </exclusions>
215 </dependency>
216 <dependency>
217 <groupId>org.apache.abdera</groupId>
218 <artifactId>abdera-parser</artifactId>
219 <version>0.4.0-incubating</version>
220 <exclusions>
221 <exclusion>
222 <groupId>commons-logging</groupId>
223 <artifactId>commons-logging</artifactId>
224 </exclusion>
225 </exclusions>
226 </dependency>
227 <dependency>
228 <groupId>org.apache.abdera</groupId>
229 <artifactId>abdera-server</artifactId>
230 <version>0.4.0-incubating</version>
231 <exclusions>
232 <exclusion>
233 <groupId>javax.servlet</groupId>
234 <artifactId>servlet-api</artifactId>
235 </exclusion>
236 <exclusion>
237 <groupId>commons-logging</groupId>
238 <artifactId>commons-logging</artifactId>
239 </exclusion>
240 </exclusions>
241 </dependency>
242 <dependency>
243 <groupId>org.slf4j</groupId>
244 <artifactId>jcl-over-slf4j</artifactId>
245 <version>1.5.6</version>
246 </dependency>
247 <dependency>
248 <groupId>ch.qos.logback</groupId>
249 <artifactId>logback-core</artifactId>
250 <version>0.9.15</version>
251 <scope>runtime</scope>
252 </dependency>
253 <dependency>
254 <groupId>ch.qos.logback</groupId>
255 <artifactId>logback-classic</artifactId>
256 <version>0.9.15</version>
257 <scope>runtime</scope>
258 </dependency>
259 </dependencies>
260 <profiles>
261 <profile>
262 <id>development</id>
263 <activation>
264 <activeByDefault>true</activeByDefault>
265 </activation>
266 </profile>
267 <profile>
268 <id>production</id>
269 <activation>
270 <activeByDefault>false</activeByDefault>
271 </activation>
272 <properties>
273 <maven.test.skip>true</maven.test.skip>
274 </properties>
275 <build>
276 <resources>
277 <resource>
278 <directory>src/production/resources</directory>
279 </resource>
280 <resource>
281 <directory>src/main/resources</directory>
282 </resource>
283 </resources>
284 </build>
285 </profile>
286 <profile>
287 <id>tomcat6</id>
288 <activation>
289 <activeByDefault>true</activeByDefault>
290 </activation>
291 <build>
292 <plugins>
293 <plugin>
294 <groupId>org.codehaus.cargo</groupId>
295 <artifactId>cargo-maven2-plugin</artifactId>
296 <configuration>
297 <container>
298 <containerId>tomcat6x</containerId>
299 <!--
300 <type>embedded</type>
301 -->
302 <!-- for use -Dtomcat.home=c:\usr\local...
303 <type>installed</type>
304 <home>${tomcat.home}</home>
305 -->
306 <zipUrlInstaller>
307 <url>
308 http://archive.apache.org/dist/tomcat/tomcat-6/v6.0.18/bin/apache-tomcat-6.0.18.zip
309 </url>
310 <installDir>${project.build.directory}</installDir>
311 </zipUrlInstaller>
312 <output>
313 ${project.build.directory}/tomcat6x.log
314 </output>
315 <log>${project.build.directory}/cargo.log</log>
316 </container>
317 </configuration>
318 <executions>
319 <execution>
320 <id>start-container</id>
321 <phase>pre-integration-test</phase>
322 <goals>
323 <goal>start</goal>
324 </goals>
325 <configuration>
326 <wait>false</wait>
327 </configuration>
328 </execution>
329 <execution>
330 <id>stop-container</id>
331 <phase>post-integration-test</phase>
332 <goals>
333 <goal>stop</goal>
334 </goals>
335 </execution>
336 </executions>
337 </plugin>
338 <plugin>
339 <groupId>org.codehaus.mojo</groupId>
340 <artifactId>selenium-maven-plugin</artifactId>
341 <executions>
342 <execution>
343 <id>selenese-firefox</id>
344 <phase>integration-test</phase>
345 <goals>
346 <goal>selenese</goal>
347 </goals>
348 <configuration>
349 <browser>*firefox</browser>
350 </configuration>
351 </execution>
352 </executions>
353 </plugin>
354 </plugins>
355 </build>
356 </profile>
357 </profiles>
358 </project>

Repository Top
ViewVC Help  
ViewVC logotype
Powered by ViewVC