利用者向け情報

開発者向け情報

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2000 - (hide annotations)
Mon Oct 5 03:20:03 2009 JST (3 years, 7 months ago) by baba
File MIME type: text/plain
File size: 7345 byte(s)
サンプル更新
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 1964 <version>2.0.2-SNAPSHOT</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     </repositories>
73     <dependencies>
74     <dependency>
75     <groupId>junit</groupId>
76     <artifactId>junit</artifactId>
77 baba 1798 <version>4.6</version>
78 baba 1662 <scope>test</scope>
79     </dependency>
80     <dependency>
81     <groupId>javax.servlet</groupId>
82     <artifactId>servlet-api</artifactId>
83 baba 1505 <version>2.5</version>
84 baba 1662 <scope>provided</scope>
85 baba 1505 </dependency>
86     <dependency>
87 baba 1662 <groupId>javax.servlet</groupId>
88     <artifactId>jstl</artifactId>
89     <version>1.2</version>
90     </dependency>
91     <dependency>
92 baba 1821 <groupId>javax.persistence</groupId>
93     <artifactId>persistence-api</artifactId>
94     <version>1.0</version>
95     </dependency>
96     <dependency>
97     <groupId>javax.transaction</groupId>
98     <artifactId>jta</artifactId>
99     <version>1.1</version>
100     </dependency>
101     <dependency>
102 baba 1505 <groupId>org.seasar.cubby</groupId>
103     <artifactId>cubby</artifactId>
104 baba 2000 <version>${project.version}</version>
105 baba 1505 </dependency>
106     <dependency>
107     <groupId>org.seasar.cubby</groupId>
108     <artifactId>cubby-guice</artifactId>
109 baba 2000 <version>${project.version}</version>
110 baba 1505 </dependency>
111 baba 1662 <dependency>
112 baba 1794 <groupId>org.seasar.cubby</groupId>
113     <artifactId>cubby-oval</artifactId>
114 baba 2000 <version>${project.version}</version>
115 baba 1794 </dependency>
116     <dependency>
117 baba 1907 <groupId>com.google.inject</groupId>
118 baba 1662 <artifactId>guice</artifactId>
119 baba 1788 <version>2.0</version>
120 baba 1662 </dependency>
121     <dependency>
122 baba 1907 <groupId>com.google.inject.extensions</groupId>
123 baba 1662 <artifactId>guice-servlet</artifactId>
124 baba 1788 <version>2.0</version>
125     </dependency>
126     <dependency>
127     <groupId>aopalliance</groupId>
128     <artifactId>aopalliance</artifactId>
129 baba 1662 <version>1.0</version>
130     </dependency>
131     <dependency>
132     <groupId>org.slf4j</groupId>
133     <artifactId>slf4j-api</artifactId>
134     <version>1.5.6</version>
135     </dependency>
136     <dependency>
137 baba 1821 <groupId>org.hibernate</groupId>
138     <artifactId>hibernate-entitymanager</artifactId>
139     <version>3.4.0.GA</version>
140 baba 1662 </dependency>
141     <dependency>
142     <groupId>ch.qos.logback</groupId>
143     <artifactId>logback-core</artifactId>
144 baba 1821 <version>0.9.15</version>
145 baba 1662 <scope>runtime</scope>
146     </dependency>
147     <dependency>
148     <groupId>ch.qos.logback</groupId>
149     <artifactId>logback-classic</artifactId>
150 baba 1821 <version>0.9.15</version>
151 baba 1662 <scope>runtime</scope>
152     </dependency>
153     <dependency>
154     <groupId>com.h2database</groupId>
155     <artifactId>h2</artifactId>
156 baba 1821 <version>1.1.115</version>
157 baba 1662 <scope>runtime</scope>
158     </dependency>
159 baba 1505 </dependencies>
160     <profiles>
161     <profile>
162     <id>development</id>
163     <activation>
164     <activeByDefault>true</activeByDefault>
165     </activation>
166     </profile>
167     <profile>
168     <id>production</id>
169     <activation>
170     <activeByDefault>false</activeByDefault>
171     </activation>
172     <properties>
173     <maven.test.skip>true</maven.test.skip>
174     </properties>
175     <build>
176     <resources>
177     <resource>
178     <directory>src/production/resources</directory>
179     </resource>
180     <resource>
181     <directory>src/main/resources</directory>
182     </resource>
183     </resources>
184     </build>
185     </profile>
186 baba 1660 <profile>
187     <id>tomcat6</id>
188     <activation>
189     <activeByDefault>true</activeByDefault>
190     </activation>
191     <build>
192     <plugins>
193     <plugin>
194     <groupId>org.codehaus.cargo</groupId>
195     <artifactId>cargo-maven2-plugin</artifactId>
196     <configuration>
197     <container>
198     <containerId>tomcat6x</containerId>
199     <!--
200     <type>embedded</type>
201     -->
202     <!-- for use -Dtomcat.home=c:\usr\local...
203     <type>installed</type>
204     <home>${tomcat.home}</home>
205     -->
206     <zipUrlInstaller>
207     <url>
208     http://archive.apache.org/dist/tomcat/tomcat-6/v6.0.18/bin/apache-tomcat-6.0.18.zip
209     </url>
210     <installDir>${project.build.directory}</installDir>
211     </zipUrlInstaller>
212     <output>
213     ${project.build.directory}/tomcat6x.log
214     </output>
215     <log>${project.build.directory}/cargo.log</log>
216     </container>
217     </configuration>
218     <executions>
219     <execution>
220     <id>start-container</id>
221     <phase>pre-integration-test</phase>
222     <goals>
223     <goal>start</goal>
224     </goals>
225     <configuration>
226     <wait>false</wait>
227     </configuration>
228     </execution>
229     <execution>
230     <id>stop-container</id>
231     <phase>post-integration-test</phase>
232     <goals>
233     <goal>stop</goal>
234     </goals>
235     </execution>
236     </executions>
237     </plugin>
238     </plugins>
239     </build>
240     </profile>
241 baba 1505 </profiles>
242 agata 1245 </project>

Properties

Name Value
svn:mime-type text/plain

Repository Top
ViewVC Help  
ViewVC logotype
Powered by ViewVC