Develop and Download Open Source Software

Browse CVS Repository

Contents of /pal/cms-portlets/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.12 - (show annotations) (download) (as text)
Sat Dec 2 13:24:59 2006 UTC (17 years, 4 months ago) by shinsuke
Branch: MAIN
Changes since 1.11: +5 -0 lines
File MIME type: application/xml
added commons-fileupload

1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <groupId>jp.sf.pal</groupId>
6 <artifactId>cms-portlet</artifactId>
7 <packaging>war</packaging>
8 <version>0.3-SNAPSHOT</version>
9 <name>CMS Portlet Project</name>
10 <description></description>
11 <url>http://pal.sourceforge.jp/</url>
12 <inceptionYear>2005</inceptionYear>
13 <developers>
14 <developer>
15 <id>shinsuke</id>
16 <name>Shinsuke Sugaya</name>
17 <email>shinsuke_at_yahoo.co.jp</email>
18 <url>http://d.hatena.ne.jp/shinsuke_sugaya/</url>
19 <organization />
20 <organizationUrl />
21 <timezone>+9</timezone>
22 </developer>
23 </developers>
24 <licenses>
25 <license>
26 <name>The Apache Software License, Version 2.0</name>
27 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
28 <distribution>repo</distribution>
29 </license>
30 </licenses>
31 <scm>
32 <connection>
33 scm:cvs:pserver:anonymous@cvs.sourceforge.jp:/cvsroot/pal:cms-portlet
34 </connection>
35 <developerConnection>
36 scm:cvs:pserver:anonymous@cvs.sourceforge.jp:/cvsroot/pal:cms-portlet
37 </developerConnection>
38 <url>http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/pal/cms-portlet</url>
39 </scm>
40 <organization>
41 <name>Portal Application Laboratory</name>
42 <url>http://pal.sourceforge.jp/</url>
43 </organization>
44 <build>
45 <finalName>cms-portlet</finalName>
46 <defaultGoal>validate</defaultGoal>
47 <pluginManagement>
48 <plugins>
49 <plugin>
50 <artifactId>maven-compiler-plugin</artifactId>
51 <configuration>
52 <source>1.4</source>
53 <target>1.4</target>
54 <encoding>UTF-8</encoding>
55 </configuration>
56 </plugin>
57 <plugin>
58 <artifactId>maven-deploy-plugin</artifactId>
59 <configuration>
60 <updateReleaseInfo>true</updateReleaseInfo>
61 </configuration>
62 </plugin>
63 <!--
64 <plugin>
65 <artifactId>maven-site-plugin</artifactId>
66 <configuration>
67 <outputEncodinf>UTF-8</outputEncodinf>
68 </configuration>
69 </plugin>
70 <plugin>
71 <artifactId>maven-surefire-plugin</artifactId>
72 <configuration>
73 <forkMode>none</forkMode>
74 </configuration>
75 </plugin>
76 -->
77 <plugin>
78 <groupId>org.codehaus.mojo</groupId>
79 <artifactId>cobertura-maven-plugin</artifactId>
80 <version>2.0-SNAPSHOT</version>
81 <executions>
82 <execution>
83 <goals>
84 <goal>clean</goal>
85 </goals>
86 </execution>
87 </executions>
88 </plugin>
89 </plugins>
90 </pluginManagement>
91 <plugins>
92 <plugin>
93 <artifactId>maven-source-plugin</artifactId>
94 <executions>
95 <execution>
96 <id>source-jar</id>
97 <phase>package</phase>
98 <goals>
99 <goal>jar</goal>
100 </goals>
101 </execution>
102 </executions>
103 </plugin>
104 <!--
105 <plugin>
106 <artifactId>maven-javadoc-plugin</artifactId>
107 <executions>
108 <execution>
109 <id>javadoc-jar</id>
110 <phase>package</phase>
111 <goals>
112 <goal>jar</goal>
113 </goals>
114 </execution>
115 </executions>
116 <configuration>
117 <charset>UTF-8</charset>
118 </configuration>
119 </plugin>
120 -->
121 </plugins>
122 </build>
123 <repositories>
124 <repository>
125 <id>maven.marevol.com</id>
126 <name>Maven2 Repository on marevol.com</name>
127 <url>http://www.marevol.com/maven2</url>
128 </repository>
129 <repository>
130 <id>maven.seasar.org</id>
131 <name>The Seasar Foundation Maven2 Repository</name>
132 <url>http://maven.seasar.org/maven2</url>
133 </repository>
134 </repositories>
135 <pluginRepositories>
136 <pluginRepository>
137 <id>people.apache.org m2-snapshot</id>
138 <url>http://people.apache.org/repo/m2-snapshot-repository</url>
139 <snapshots>
140 <enabled>true</enabled>
141 </snapshots>
142 <releases>
143 <enabled>false</enabled>
144 </releases>
145 </pluginRepository>
146 <pluginRepository>
147 <id>snapshots.repository.codehaus.org</id>
148 <url>http://snapshots.repository.codehaus.org</url>
149 <snapshots>
150 <enabled>true</enabled>
151 </snapshots>
152 <releases>
153 <enabled>false</enabled>
154 </releases>
155 </pluginRepository>
156 </pluginRepositories>
157 <dependencies>
158 <!-- SERVLET DEV: BEGIN @@@
159 <dependency>
160 <groupId>jp.sf.pal</groupId>
161 <artifactId>faces-dev-filter</artifactId>
162 <version>0.1-SNAPSHOT</version>
163 <scope>compile</scope>
164 </dependency>
165 @@@@ SERVLET DEV: END -->
166
167 <dependency>
168 <groupId>org.apache.derby</groupId>
169 <artifactId>derby</artifactId>
170 <version>10.1.1.0</version>
171 </dependency>
172
173
174 <dependency>
175 <groupId>junit</groupId>
176 <artifactId>junit</artifactId>
177 <version>3.8.1</version>
178 <scope>test</scope>
179 </dependency>
180 <dependency>
181 <groupId>javax.servlet</groupId>
182 <artifactId>servlet-api</artifactId>
183 <version>2.3</version>
184 <scope>provided</scope>
185 </dependency>
186 <dependency>
187 <groupId>portlet-api</groupId>
188 <artifactId>portlet-api</artifactId>
189 <version>1.0</version>
190 <scope>provided</scope>
191 </dependency>
192 <dependency>
193 <groupId>jstl</groupId>
194 <artifactId>jstl</artifactId>
195 <version>1.1.2</version>
196 </dependency>
197 <dependency>
198 <groupId>commons-logging</groupId>
199 <artifactId>commons-logging</artifactId>
200 <version>1.0.4</version>
201 <scope>compile</scope>
202 </dependency>
203 <dependency>
204 <groupId>commons-lang</groupId>
205 <artifactId>commons-lang</artifactId>
206 <version>2.1</version>
207 </dependency>
208 <dependency>
209 <groupId>commons-fileupload</groupId>
210 <artifactId>commons-fileupload</artifactId>
211 <version>1.1</version>
212 </dependency>
213
214 <dependency>
215 <groupId>org.apache.portals.bridges</groupId>
216 <artifactId>portals-bridges-portletfilter</artifactId>
217 <version>1.0.1-20061109</version>
218 </dependency>
219 <dependency>
220 <groupId>jp.sf.pal</groupId>
221 <artifactId>faces-response-filter</artifactId>
222 <version>0.1-SNAPSHOT</version>
223 </dependency>
224 <dependency>
225 <groupId>jp.sf.pal</groupId>
226 <artifactId>tomahawk-bridge</artifactId>
227 <version>0.9-SNAPSHOT</version>
228 </dependency>
229 <dependency>
230 <groupId>org.apache.myfaces.tomahawk</groupId>
231 <artifactId>tomahawk</artifactId>
232 <version>1.1.3</version>
233 <exclusions>
234 <exclusion>
235 <groupId>struts</groupId>
236 <artifactId>struts</artifactId>
237 </exclusion>
238 </exclusions>
239 </dependency>
240
241 <dependency>
242 <groupId>com.marevol</groupId>
243 <artifactId>marevol-faces-utils</artifactId>
244 <version>0.3</version>
245 </dependency>
246
247 <dependency>
248 <groupId>org.seasar.container</groupId>
249 <artifactId>s2-framework</artifactId>
250 <version>2.4.5</version>
251 </dependency>
252 <dependency>
253 <groupId>org.seasar.container</groupId>
254 <artifactId>s2-extension</artifactId>
255 <version>2.4.5</version>
256 </dependency>
257 <dependency>
258 <groupId>org.seasar.teeda</groupId>
259 <artifactId>teeda-core</artifactId>
260 <version>1.0.2</version>
261 <exclusions>
262 <exclusion>
263 <groupId>rhino</groupId>
264 <artifactId>rhino</artifactId>
265 </exclusion>
266 </exclusions>
267 </dependency>
268 <dependency>
269 <groupId>org.seasar.portlet</groupId>
270 <artifactId>s2-portlet</artifactId>
271 <version>1.0.6</version>
272 </dependency>
273 <dependency>
274 <groupId>org.seasar.jcr</groupId>
275 <artifactId>s2-jcr</artifactId>
276 <version>0.1.0-SNAPSHOT</version>
277 </dependency>
278
279 <!-- Jackrabbit -->
280 <dependency>
281 <groupId>org.apache.jackrabbit</groupId>
282 <artifactId>jackrabbit-core</artifactId>
283 <version>1.1</version>
284 <type>jar</type>
285 </dependency>
286 <dependency>
287 <groupId>org.apache.jackrabbit</groupId>
288 <artifactId>jackrabbit-jcr-commons</artifactId>
289 <version>1.1</version>
290 <type>jar</type>
291 </dependency>
292 <dependency>
293 <groupId>org.apache.jackrabbit</groupId>
294 <artifactId>jackrabbit-index-filters</artifactId>
295 <version>1.1</version>
296 <type>jar</type>
297 </dependency>
298 <dependency>
299 <groupId>org.apache.jackrabbit</groupId>
300 <artifactId>jackrabbit-backup</artifactId>
301 <version>1.1</version>
302 <type>jar</type>
303 </dependency>
304
305 <dependency>
306 <groupId>nekohtml</groupId>
307 <artifactId>nekohtml</artifactId>
308 <version>0.9.5</version>
309 </dependency>
310 </dependencies>
311
312 <reporting>
313 <plugins>
314 <plugin>
315 <artifactId>maven-project-info-reports-plugin</artifactId>
316 </plugin>
317 <!--
318 <plugin>
319 <groupId>org.codehaus.mojo</groupId>
320 <artifactId>surefire-report-maven-plugin</artifactId>
321 </plugin>
322 -->
323 <plugin>
324 <groupId>org.codehaus.mojo</groupId>
325 <artifactId>changelog-maven-plugin</artifactId>
326 </plugin>
327 <plugin>
328 <groupId>org.codehaus.mojo</groupId>
329 <artifactId>taglist-maven-plugin</artifactId>
330 <configuration>
331 <tags>
332 <tag>FIXME</tag>
333 <tag>TODO</tag>
334 <tag>XXX</tag>
335 </tags>
336 </configuration>
337 </plugin>
338 <plugin>
339 <groupId>org.codehaus.mojo</groupId>
340 <artifactId>cobertura-maven-plugin</artifactId>
341 <version>2.0-SNAPSHOT</version>
342 <!--
343 <configuration>
344 <outputDirectory>${project.build.directory}/site/cobertura</outputDirectory>
345 </configuration>
346 -->
347 </plugin>
348 <!--
349 <plugin>
350 <artifactId>maven-javadoc-plugin</artifactId>
351 </plugin>
352 <plugin>
353 <artifactId>maven-clover-plugin</artifactId>
354 </plugin>
355 <plugin>
356 <artifactId>maven-pmd-plugin</artifactId>
357 </plugin>
358 <plugin>
359 <artifactId>maven-checkstyle-plugin</artifactId>
360 </plugin>
361 -->
362 </plugins>
363 </reporting>
364 </project>

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