利用者向け情報

開発者向け情報

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1872 - (hide annotations)
Mon Jul 13 01:41:03 2009 JST (3 years, 11 months ago) by baba
Original Path: branches/2.0.x/cubby-apps/cubby-examples/pom.xml
File MIME type: text/xml
File size: 11287 byte(s)
[maven-release-plugin] prepare for next development iteration
1 baba 982 <?xml version="1.0" encoding="UTF-8"?>
2 baba 1662 <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 baba 1660 <parent>
4     <artifactId>cubby-apps</artifactId>
5     <groupId>org.seasar.cubby</groupId>
6 baba 1872 <version>2.0.0-rc3-SNAPSHOT</version>
7 baba 1660 </parent>
8 baba 982 <modelVersion>4.0.0</modelVersion>
9     <groupId>org.seasar.cubby</groupId>
10     <artifactId>cubby-examples</artifactId>
11     <packaging>war</packaging>
12 baba 1388 <name>Cubby Examples</name>
13 baba 982 <build>
14     <finalName>cubby-examples</finalName>
15 baba 1535 <plugins>
16 baba 981 <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 baba 1542 <webResource>
29 baba 981 <directory>src</directory>
30     <targetPath>WEB-INF/src</targetPath>
31 baba 1542 </webResource>
32 baba 981 </webResources>
33     </configuration>
34     </plugin>
35 baba 982 <plugin>
36     <artifactId>maven-eclipse-plugin</artifactId>
37     <configuration>
38     <wtpversion>2.0</wtpversion>
39 baba 1535 <downloadSources>true</downloadSources>
40     <downloadJavadocs>true</downloadJavadocs>
41 baba 975 <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 baba 982 </configuration>
62     </plugin>
63     <plugin>
64 baba 1535 <groupId>org.codehaus.mojo</groupId>
65 baba 1660 <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 baba 1535 <artifactId>tomcat-maven-plugin</artifactId>
77     </plugin>
78     <plugin>
79 baba 1505 <groupId>org.mortbay.jetty</groupId>
80     <artifactId>maven-jetty-plugin</artifactId>
81     </plugin>
82 baba 982 </plugins>
83     </build>
84     <repositories>
85 agata 804 <repository>
86 baba 982 <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 agata 804 <id>apache.incubating</id>
97     <name>Apache Incubating Repository</name>
98     <url>http://people.apache.org/repo/m2-incubating-repository/</url>
99     </repository>
100 baba 982 </repositories>
101     <dependencies>
102 agata 798 <dependency>
103 baba 982 <groupId>junit</groupId>
104     <artifactId>junit</artifactId>
105 baba 1798 <version>4.6</version>
106 baba 982 <scope>test</scope>
107     </dependency>
108     <dependency>
109     <groupId>javax.servlet</groupId>
110     <artifactId>jstl</artifactId>
111 baba 1406 <version>1.2</version>
112 baba 982 </dependency>
113     <dependency>
114     <groupId>org.seasar.cubby</groupId>
115 baba 1293 <artifactId>cubby-s2</artifactId>
116 baba 1869 <version>2.0.0-rc2</version>
117 baba 982 </dependency>
118     <dependency>
119 baba 1047 <groupId>org.seasar.cubby</groupId>
120 baba 1423 <artifactId>cubby-gson</artifactId>
121 baba 1869 <version>2.0.0-rc2</version>
122 baba 1423 </dependency>
123     <dependency>
124     <groupId>org.seasar.cubby</groupId>
125 baba 1762 <artifactId>cubby-oval</artifactId>
126 baba 1869 <version>2.0.0-rc2</version>
127 baba 1762 </dependency>
128     <dependency>
129     <groupId>org.seasar.cubby</groupId>
130 baba 1047 <artifactId>cubby-admin</artifactId>
131 baba 1869 <version>2.0.0-rc2</version>
132 baba 1047 </dependency>
133     <dependency>
134 baba 982 <groupId>org.seasar.container</groupId>
135     <artifactId>s2-framework</artifactId>
136 baba 1806 <version>2.4.38</version>
137 baba 1822 <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 baba 982 </dependency>
148     <dependency>
149     <groupId>org.seasar.container</groupId>
150     <artifactId>s2-extension</artifactId>
151 baba 1806 <version>2.4.38</version>
152 baba 1822 <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 baba 982 </dependency>
163     <dependency>
164     <groupId>org.seasar.container</groupId>
165     <artifactId>s2-tiger</artifactId>
166 baba 1806 <version>2.4.38</version>
167 baba 982 </dependency>
168     <dependency>
169     <groupId>org.seasar.dao</groupId>
170     <artifactId>s2-dao</artifactId>
171 baba 1505 <version>1.0.50</version>
172 baba 982 </dependency>
173     <dependency>
174     <groupId>org.seasar.dao</groupId>
175     <artifactId>s2-dao-tiger</artifactId>
176 baba 1505 <version>1.0.50</version>
177 baba 982 </dependency>
178     <dependency>
179     <groupId>org.apache.geronimo.specs</groupId>
180 baba 1406 <artifactId>geronimo-servlet_2.5_spec</artifactId>
181     <version>1.2</version>
182 baba 982 <scope>provided</scope>
183     </dependency>
184     <dependency>
185     <groupId>org.apache.geronimo.specs</groupId>
186 baba 1543 <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 baba 1549 <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 baba 982 <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 agata 798 <groupId>org.seasar.mayaa</groupId>
208     <artifactId>mayaa</artifactId>
209 baba 1822 <version>1.1.26</version>
210     <exclusions>
211     <exclusion>
212     <groupId>commons-logging</groupId>
213     <artifactId>commons-logging</artifactId>
214     </exclusion>
215     </exclusions>
216 agata 798 </dependency>
217     <dependency>
218     <groupId>org.apache.abdera</groupId>
219     <artifactId>abdera-parser</artifactId>
220 baba 975 <version>0.4.0-incubating</version>
221 baba 1822 <exclusions>
222     <exclusion>
223     <groupId>commons-logging</groupId>
224     <artifactId>commons-logging</artifactId>
225     </exclusion>
226     </exclusions>
227 baba 975 </dependency>
228     <dependency>
229     <groupId>org.apache.abdera</groupId>
230     <artifactId>abdera-server</artifactId>
231     <version>0.4.0-incubating</version>
232 agata 1124 <exclusions>
233     <exclusion>
234     <groupId>javax.servlet</groupId>
235     <artifactId>servlet-api</artifactId>
236     </exclusion>
237 baba 1388 <exclusion>
238     <groupId>commons-logging</groupId>
239     <artifactId>commons-logging</artifactId>
240     </exclusion>
241 agata 1124 </exclusions>
242 baba 975 </dependency>
243 baba 1388 <dependency>
244 baba 1822 <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 baba 1388 <scope>runtime</scope>
253     </dependency>
254 baba 1822 <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 baba 982 </dependencies>
261 baba 1654 <profiles>
262     <profile>
263 baba 1660 <id>development</id>
264 baba 1654 <activation>
265     <activeByDefault>true</activeByDefault>
266     </activation>
267 baba 1660 </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 baba 1654 <build>
277 baba 1660 <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 baba 1654 <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 baba 1660 <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 baba 1654 </plugins>
357     </build>
358     </profile>
359     </profiles>
360 baba 982 </project>

Repository Top
ViewVC Help  
ViewVC logotype
Powered by ViewVC