利用者向け情報

開発者向け情報

[cubby]/branches/2.0.x/cubby-project/cubby-guice-examples/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2171 - (hide annotations)
Sun Mar 28 20:29:10 2010 JST (3 years, 2 months ago) by baba
File MIME type: text/plain
File size: 7820 byte(s)
[maven-release-plugin] prepare for next development iteration
1 baba 2134 <?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-project</artifactId>
5     <groupId>org.seasar.cubby</groupId>
6 baba 2171 <version>2.0.10-SNAPSHOT</version>
7 baba 2134 </parent>
8     <modelVersion>4.0.0</modelVersion>
9     <artifactId>cubby-guice-examples</artifactId>
10     <packaging>war</packaging>
11     <name>Cubby Guice Examples</name>
12     <build>
13     <finalName>cubby-guice-examples</finalName>
14     <plugins>
15     <plugin>
16     <artifactId>maven-compiler-plugin</artifactId>
17     <configuration>
18     <source>1.5</source>
19     <target>1.5</target>
20     <encoding>UTF-8</encoding>
21     </configuration>
22     </plugin>
23     <plugin>
24     <artifactId>maven-eclipse-plugin</artifactId>
25     <configuration>
26     <wtpversion>2.0</wtpversion>
27     <downloadSources>true</downloadSources>
28     <downloadJavadocs>true</downloadJavadocs>
29 baba 2138 <useProjectReferences>false</useProjectReferences>
30 baba 2134 <additionalConfig>
31     <file>
32     <name>.settings/org.eclipse.core.resources.prefs</name>
33     <content>
34     <![CDATA[
35     eclipse.preferences.version=1
36     encoding/<project>=UTF-8
37     ]]>
38     </content>
39     </file>
40     <file>
41     <name>.settings/org.eclipse.core.runtime.prefs</name>
42     <content>
43     <![CDATA[
44     eclipse.preferences.version=1
45     line.separator=\n
46     ]]>
47     </content>
48     </file>
49     </additionalConfig>
50     </configuration>
51     </plugin>
52     <plugin>
53     <groupId>org.codehaus.mojo</groupId>
54     <artifactId>tomcat-maven-plugin</artifactId>
55     </plugin>
56     <plugin>
57     <groupId>org.mortbay.jetty</groupId>
58     <artifactId>maven-jetty-plugin</artifactId>
59     </plugin>
60     </plugins>
61     </build>
62     <repositories>
63     <repository>
64     <id>maven.seasar.org</id>
65     <name>The Seasar Foundation Maven2 Repository</name>
66     <url>http://maven.seasar.org/maven2</url>
67     </repository>
68     </repositories>
69     <dependencies>
70     <dependency>
71     <groupId>junit</groupId>
72     <artifactId>junit</artifactId>
73     <version>4.7</version>
74     <scope>test</scope>
75     </dependency>
76     <dependency>
77     <groupId>javax.servlet</groupId>
78     <artifactId>servlet-api</artifactId>
79     <version>2.5</version>
80     <scope>provided</scope>
81     </dependency>
82     <dependency>
83     <groupId>javax.servlet</groupId>
84     <artifactId>jstl</artifactId>
85     <version>1.2</version>
86     </dependency>
87     <dependency>
88     <groupId>org.seasar.cubby</groupId>
89     <artifactId>cubby</artifactId>
90 baba 2171 <version>2.0.10-SNAPSHOT</version>
91 baba 2134 </dependency>
92     <dependency>
93     <groupId>org.seasar.cubby</groupId>
94     <artifactId>cubby-unit</artifactId>
95 baba 2171 <version>2.0.10-SNAPSHOT</version>
96 baba 2134 <scope>test</scope>
97     </dependency>
98     <dependency>
99     <groupId>org.seasar.cubby</groupId>
100     <artifactId>cubby-guice</artifactId>
101 baba 2171 <version>2.0.10-SNAPSHOT</version>
102 baba 2134 </dependency>
103     <dependency>
104     <groupId>org.seasar.cubby</groupId>
105     <artifactId>cubby-admin</artifactId>
106 baba 2171 <version>2.0.10-SNAPSHOT</version>
107 baba 2134 <scope>runtime</scope>
108     </dependency>
109     <dependency>
110     <groupId>com.google.inject</groupId>
111     <artifactId>guice</artifactId>
112     <version>2.0</version>
113     </dependency>
114     <dependency>
115     <groupId>com.google.inject.extensions</groupId>
116     <artifactId>guice-servlet</artifactId>
117     <version>2.0</version>
118     </dependency>
119     <dependency>
120     <groupId>aopalliance</groupId>
121     <artifactId>aopalliance</artifactId>
122     <version>1.0</version>
123     </dependency>
124     <dependency>
125     <groupId>org.slf4j</groupId>
126     <artifactId>slf4j-api</artifactId>
127     <version>1.5.6</version>
128     </dependency>
129     <dependency>
130     <groupId>org.slf4j</groupId>
131     <artifactId>jcl-over-slf4j</artifactId>
132     <version>1.5.6</version>
133     </dependency>
134     <dependency>
135     <groupId>ch.qos.logback</groupId>
136     <artifactId>logback-core</artifactId>
137     <version>0.9.15</version>
138     <scope>runtime</scope>
139     </dependency>
140     <dependency>
141     <groupId>ch.qos.logback</groupId>
142     <artifactId>logback-classic</artifactId>
143     <version>0.9.15</version>
144     <scope>runtime</scope>
145     </dependency>
146     <dependency>
147     <groupId>org.springframework</groupId>
148     <artifactId>spring-test</artifactId>
149     <version>2.5.6.SEC01</version>
150     <scope>test</scope>
151     <exclusions>
152     <exclusion>
153     <groupId>commons-logging</groupId>
154     <artifactId>commons-logging</artifactId>
155     </exclusion>
156     </exclusions>
157     </dependency>
158     <dependency>
159     <groupId>org.springframework</groupId>
160     <artifactId>spring-core</artifactId>
161     <version>2.5.6.SEC01</version>
162     <scope>test</scope>
163     <exclusions>
164     <exclusion>
165     <groupId>commons-logging</groupId>
166     <artifactId>commons-logging</artifactId>
167     </exclusion>
168     </exclusions>
169     </dependency>
170     </dependencies>
171     <profiles>
172     <profile>
173     <id>development</id>
174     <activation>
175     <activeByDefault>true</activeByDefault>
176     </activation>
177     </profile>
178     <profile>
179     <id>production</id>
180     <activation>
181     <activeByDefault>false</activeByDefault>
182     </activation>
183     <properties>
184     <maven.test.skip>true</maven.test.skip>
185     </properties>
186     <build>
187     <resources>
188     <resource>
189     <directory>src/production/resources</directory>
190     </resource>
191     <resource>
192     <directory>src/main/resources</directory>
193     </resource>
194     </resources>
195     </build>
196     </profile>
197     <profile>
198     <id>tomcat6</id>
199     <activation>
200     <activeByDefault>true</activeByDefault>
201     </activation>
202     <build>
203     <plugins>
204     <plugin>
205     <groupId>org.codehaus.cargo</groupId>
206     <artifactId>cargo-maven2-plugin</artifactId>
207     <configuration>
208     <container>
209     <containerId>tomcat6x</containerId>
210     <!--
211     <type>embedded</type>
212     -->
213     <!-- for use -Dtomcat.home=c:\usr\local...
214     <type>installed</type>
215     <home>${tomcat.home}</home>
216     -->
217     <zipUrlInstaller>
218     <url>
219     http://archive.apache.org/dist/tomcat/tomcat-6/v6.0.18/bin/apache-tomcat-6.0.18.zip
220     </url>
221     <installDir>${project.build.directory}</installDir>
222     </zipUrlInstaller>
223     <output>
224     ${project.build.directory}/tomcat6x.log
225     </output>
226     <log>${project.build.directory}/cargo.log</log>
227     </container>
228     </configuration>
229     <executions>
230     <!--
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     -->
249     </executions>
250     </plugin>
251     </plugins>
252     </build>
253     </profile>
254     </profiles>
255     </project>

Properties

Name Value
svn:mime-type text/plain

Repository Top
ViewVC Help  
ViewVC logotype
Powered by ViewVC