Develop and Download Open Source Software

Browse Subversion Repository

Contents of /todolist/trunk/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1740 - (show annotations) (download) (as text)
Fri Feb 13 14:37:33 2009 UTC (15 years, 3 months ago) by shinsuke
File MIME type: application/xml
File size: 6807 byte(s)
1.0-PR2 release.
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 <modelVersion>4.0.0</modelVersion>
4 <groupId>jp.sf.pal</groupId>
5 <artifactId>todolist</artifactId>
6 <version>1.0-PR2</version>
7 <packaging>war</packaging>
8 <name>ToDo List</name>
9 <description/>
10 <build>
11 <finalName>todolist</finalName>
12 <defaultGoal>validate</defaultGoal>
13 <pluginManagement>
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-surefire-plugin</artifactId>
25 <version>2.3</version>
26 </plugin>
27 <plugin>
28 <artifactId>maven-deploy-plugin</artifactId>
29 <configuration>
30 <updateReleaseInfo>true</updateReleaseInfo>
31 </configuration>
32 </plugin>
33 <plugin>
34 <groupId>org.codehaus.mojo</groupId>
35 <artifactId>cobertura-maven-plugin</artifactId>
36 <version>2.0-SNAPSHOT</version>
37 <executions>
38 <execution>
39 <goals>
40 <goal>clean</goal>
41 </goals>
42 </execution>
43 </executions>
44 </plugin>
45 </plugins>
46 </pluginManagement>
47 <plugins>
48 <plugin>
49 <artifactId>maven-source-plugin</artifactId>
50 <executions>
51 <execution>
52 <id>source-jar</id>
53 <phase>package</phase>
54 <goals>
55 <goal>jar</goal>
56 </goals>
57 </execution>
58 </executions>
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>log4j</groupId>
72 <artifactId>log4j</artifactId>
73 <version>1.2.13</version>
74 </dependency>
75 <dependency>
76 <groupId>com.h2database</groupId>
77 <artifactId>h2</artifactId>
78 <version>1.0.79</version>
79 </dependency>
80 <!--
81 <dependency>
82 <groupId>mysql</groupId>
83 <artifactId>mysql-connector-java</artifactId>
84 <version>5.1.6</version>
85 </dependency>
86 -->
87 <dependency>
88 <groupId>javax.servlet</groupId>
89 <artifactId>servlet-api</artifactId>
90 <version>2.3</version>
91 <scope>provided</scope>
92 </dependency>
93 <dependency>
94 <groupId>portlet-api</groupId>
95 <artifactId>portlet-api</artifactId>
96 <version>1.0</version>
97 <scope>provided</scope>
98 </dependency>
99 <dependency>
100 <groupId>jstl</groupId>
101 <artifactId>jstl</artifactId>
102 <version>1.1.2</version>
103 </dependency>
104 <dependency>
105 <groupId>taglibs</groupId>
106 <artifactId>standard</artifactId>
107 <version>1.1.2</version>
108 </dependency>
109 <dependency>
110 <groupId>commons-collections</groupId>
111 <artifactId>commons-collections</artifactId>
112 <version>3.2</version>
113 </dependency>
114 <dependency>
115 <groupId>commons-configuration</groupId>
116 <artifactId>commons-configuration</artifactId>
117 <version>1.5</version>
118 </dependency>
119 <dependency>
120 <groupId>commons-el</groupId>
121 <artifactId>commons-el</artifactId>
122 <version>1.0</version>
123 </dependency>
124 <dependency>
125 <groupId>commons-fileupload</groupId>
126 <artifactId>commons-fileupload</artifactId>
127 <version>1.2.1</version>
128 </dependency>
129 <dependency>
130 <groupId>commons-io</groupId>
131 <artifactId>commons-io</artifactId>
132 <version>1.3</version>
133 </dependency>
134 <dependency>
135 <groupId>commons-lang</groupId>
136 <artifactId>commons-lang</artifactId>
137 <version>2.3</version>
138 </dependency>
139 <dependency>
140 <groupId>commons-validator</groupId>
141 <artifactId>commons-validator</artifactId>
142 <version>1.2.0</version>
143 </dependency>
144 <dependency>
145 <groupId>commons-logging</groupId>
146 <artifactId>commons-logging</artifactId>
147 <version>1.0.4</version>
148 </dependency>
149 <!-- SAStruts -->
150 <dependency>
151 <groupId>org.seasar.container</groupId>
152 <artifactId>s2-extension</artifactId>
153 <version>2.4.33</version>
154 </dependency>
155 <dependency>
156 <groupId>org.seasar.container</groupId>
157 <artifactId>s2-tiger</artifactId>
158 <version>2.4.33</version>
159 </dependency>
160 <dependency>
161 <groupId>org.seasar.sastruts</groupId>
162 <artifactId>sa-struts-portlet</artifactId>
163 <version>1.0.0</version>
164 </dependency>
165 <dependency>
166 <groupId>org.apache.geronimo.specs</groupId>
167 <artifactId>geronimo-annotation_1.0_spec</artifactId>
168 <version>1.1.1</version>
169 </dependency>
170 <dependency>
171 <groupId>org.apache.geronimo.specs</groupId>
172 <artifactId>geronimo-ejb_3.0_spec</artifactId>
173 <version>1.0</version>
174 </dependency>
175 <dependency>
176 <groupId>org.apache.geronimo.specs</groupId>
177 <artifactId>geronimo-interceptor_3.0_spec</artifactId>
178 <version>1.0</version>
179 </dependency>
180 <dependency>
181 <groupId>org.apache.geronimo.specs</groupId>
182 <artifactId>geronimo-jta_1.1_spec</artifactId>
183 <version>1.0</version>
184 </dependency>
185 <!-- DB -->
186 <dependency>
187 <groupId>org.seasar.dao</groupId>
188 <artifactId>s2-dao</artifactId>
189 <version>1.0.48</version>
190 </dependency>
191 <dependency>
192 <groupId>org.seasar.dao</groupId>
193 <artifactId>s2-dao-tiger</artifactId>
194 <version>1.0.48</version>
195 </dependency>
196 <!-- Removed from war -->
197 <dependency>
198 <!-- needed by validator(validwhen) -->
199 <groupId>antlr</groupId>
200 <artifactId>antlr</artifactId>
201 <version>2.7.7</version>
202 <scope>provided</scope>
203 </dependency>
204 <dependency>
205 <groupId>junit</groupId>
206 <artifactId>junit</artifactId>
207 <version>3.8.2</version>
208 <scope>test</scope>
209 </dependency>
210 <dependency>
211 <groupId>org.easymock</groupId>
212 <artifactId>easymock</artifactId>
213 <version>2.2</version>
214 <scope>test</scope>
215 </dependency>
216 <dependency>
217 <groupId>xalan</groupId>
218 <artifactId>xalan</artifactId>
219 <version>2.5.1</version>
220 <scope>provided</scope>
221 </dependency>
222 <dependency>
223 <groupId>xml-apis</groupId>
224 <artifactId>xml-apis</artifactId>
225 <version>2.0.2</version>
226 <scope>provided</scope>
227 </dependency>
228 </dependencies>
229 </project>

Properties

Name Value
svn:eol-style native

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26