利用者向け情報

開発者向け情報

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1904 - (hide annotations)
Sun Aug 2 05:44:44 2009 JST (3 years, 9 months ago) by baba
File MIME type: text/plain
File size: 7686 byte(s)
[CUBBY-229]
1 agata 1245 <?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 1870 <version>2.0.0-rc2</version>
7 baba 1660 </parent>
8 baba 1505 <modelVersion>4.0.0</modelVersion>
9     <groupId>org.seasar.cubby</groupId>
10 baba 1891 <artifactId>cubby-wiki</artifactId>
11 baba 1505 <packaging>war</packaging>
12 baba 1541 <name>Cubby Wiki</name>
13 baba 1505 <build>
14     <finalName>guice-wiki</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-eclipse-plugin</artifactId>
26     <configuration>
27     <wtpversion>2.0</wtpversion>
28     <downloadSources>true</downloadSources>
29     <downloadJavadocs>true</downloadJavadocs>
30     <additionalConfig>
31     <file>
32     <name>
33     .settings/org.eclipse.core.resources.prefs
34     </name>
35     <content>
36 baba 1662 <![CDATA[
37     eclipse.preferences.version=1
38     encoding/<project>=UTF-8
39     ]]>
40     </content>
41     </file>
42     <file>
43     <name>
44     .settings/org.eclipse.core.runtime.prefs
45     </name>
46     <content>
47     <![CDATA[
48     eclipse.preferences.version=1
49     line.separator=\n
50     ]]>
51     </content>
52     </file>
53     </additionalConfig>
54     </configuration>
55     </plugin>
56 baba 1505 <plugin>
57 baba 1662 <groupId>org.codehaus.mojo</groupId>
58     <artifactId>tomcat-maven-plugin</artifactId>
59     </plugin>
60     <plugin>
61 baba 1505 <groupId>org.mortbay.jetty</groupId>
62     <artifactId>maven-jetty-plugin</artifactId>
63     </plugin>
64 baba 1662 </plugins>
65     </build>
66     <repositories>
67 baba 1505 <repository>
68 baba 1662 <id>maven.seasar.org</id>
69     <name>The Seasar Foundation Maven2 Repository</name>
70     <url>http://maven.seasar.org/maven2</url>
71     </repository>
72 baba 1788 <!--
73 baba 1782 <repository>
74     <id>google-maven-repository</id>
75     <name>Google Maven Repository</name>
76     <url>http://google-maven-repository.googlecode.com/svn/repository/</url>
77     </repository>
78 baba 1788 -->
79     <repository>
80     <id>guice-maven</id>
81     <name>guice maven</name>
82     <url>http://guice-maven.googlecode.com/svn/trunk</url>
83     </repository>
84 baba 1662 </repositories>
85     <dependencies>
86     <dependency>
87     <groupId>junit</groupId>
88     <artifactId>junit</artifactId>
89 baba 1798 <version>4.6</version>
90 baba 1662 <scope>test</scope>
91     </dependency>
92     <dependency>
93     <groupId>javax.servlet</groupId>
94     <artifactId>servlet-api</artifactId>
95 baba 1505 <version>2.5</version>
96 baba 1662 <scope>provided</scope>
97 baba 1505 </dependency>
98     <dependency>
99 baba 1662 <groupId>javax.servlet</groupId>
100     <artifactId>jstl</artifactId>
101     <version>1.2</version>
102     </dependency>
103     <dependency>
104 baba 1821 <groupId>javax.persistence</groupId>
105     <artifactId>persistence-api</artifactId>
106     <version>1.0</version>
107     </dependency>
108     <dependency>
109     <groupId>javax.transaction</groupId>
110     <artifactId>jta</artifactId>
111     <version>1.1</version>
112     </dependency>
113     <dependency>
114 baba 1505 <groupId>org.seasar.cubby</groupId>
115     <artifactId>cubby</artifactId>
116 baba 1869 <version>2.0.0-rc2</version>
117 baba 1505 </dependency>
118     <dependency>
119     <groupId>org.seasar.cubby</groupId>
120     <artifactId>cubby-guice</artifactId>
121 baba 1904 <version>2.0.0-rc3-SNAPSHOT</version>
122 baba 1505 </dependency>
123 baba 1662 <dependency>
124 baba 1794 <groupId>org.seasar.cubby</groupId>
125     <artifactId>cubby-oval</artifactId>
126 baba 1869 <version>2.0.0-rc2</version>
127 baba 1794 </dependency>
128     <dependency>
129 baba 1788 <groupId>com.google.code.guice</groupId>
130 baba 1662 <artifactId>guice</artifactId>
131 baba 1788 <version>2.0</version>
132 baba 1662 </dependency>
133     <dependency>
134 baba 1788 <groupId>com.google.code.guice</groupId>
135 baba 1662 <artifactId>guice-servlet</artifactId>
136 baba 1788 <version>2.0</version>
137     </dependency>
138     <dependency>
139     <groupId>aopalliance</groupId>
140     <artifactId>aopalliance</artifactId>
141 baba 1662 <version>1.0</version>
142     </dependency>
143     <dependency>
144     <groupId>org.slf4j</groupId>
145     <artifactId>slf4j-api</artifactId>
146     <version>1.5.6</version>
147     </dependency>
148     <dependency>
149 baba 1821 <groupId>org.hibernate</groupId>
150     <artifactId>hibernate-entitymanager</artifactId>
151     <version>3.4.0.GA</version>
152 baba 1662 </dependency>
153     <dependency>
154     <groupId>ch.qos.logback</groupId>
155     <artifactId>logback-core</artifactId>
156 baba 1821 <version>0.9.15</version>
157 baba 1662 <scope>runtime</scope>
158     </dependency>
159     <dependency>
160     <groupId>ch.qos.logback</groupId>
161     <artifactId>logback-classic</artifactId>
162 baba 1821 <version>0.9.15</version>
163 baba 1662 <scope>runtime</scope>
164     </dependency>
165     <dependency>
166     <groupId>com.h2database</groupId>
167     <artifactId>h2</artifactId>
168 baba 1821 <version>1.1.115</version>
169 baba 1662 <scope>runtime</scope>
170     </dependency>
171 baba 1505 </dependencies>
172     <profiles>
173     <profile>
174     <id>development</id>
175     <activation>
176     <activeByDefault>true</activeByDefault>
177     </activation>
178     </profile>
179     <profile>
180     <id>production</id>
181     <activation>
182     <activeByDefault>false</activeByDefault>
183     </activation>
184     <properties>
185     <maven.test.skip>true</maven.test.skip>
186     </properties>
187     <build>
188     <resources>
189     <resource>
190     <directory>src/production/resources</directory>
191     </resource>
192     <resource>
193     <directory>src/main/resources</directory>
194     </resource>
195     </resources>
196     </build>
197     </profile>
198 baba 1660 <profile>
199     <id>tomcat6</id>
200     <activation>
201     <activeByDefault>true</activeByDefault>
202     </activation>
203     <build>
204     <plugins>
205     <plugin>
206     <groupId>org.codehaus.cargo</groupId>
207     <artifactId>cargo-maven2-plugin</artifactId>
208     <configuration>
209     <container>
210     <containerId>tomcat6x</containerId>
211     <!--
212     <type>embedded</type>
213     -->
214     <!-- for use -Dtomcat.home=c:\usr\local...
215     <type>installed</type>
216     <home>${tomcat.home}</home>
217     -->
218     <zipUrlInstaller>
219     <url>
220     http://archive.apache.org/dist/tomcat/tomcat-6/v6.0.18/bin/apache-tomcat-6.0.18.zip
221     </url>
222     <installDir>${project.build.directory}</installDir>
223     </zipUrlInstaller>
224     <output>
225     ${project.build.directory}/tomcat6x.log
226     </output>
227     <log>${project.build.directory}/cargo.log</log>
228     </container>
229     </configuration>
230     <executions>
231     <execution>
232     <id>start-container</id>
233     <phase>pre-integration-test</phase>
234     <goals>
235     <goal>start</goal>
236     </goals>
237     <configuration>
238     <wait>false</wait>
239     </configuration>
240     </execution>
241     <execution>
242     <id>stop-container</id>
243     <phase>post-integration-test</phase>
244     <goals>
245     <goal>stop</goal>
246     </goals>
247     </execution>
248     </executions>
249     </plugin>
250     </plugins>
251     </build>
252     </profile>
253 baba 1505 </profiles>
254 agata 1245 </project>

Properties

Name Value
svn:mime-type text/plain

Repository Top
ViewVC Help  
ViewVC logotype
Powered by ViewVC