Develop and Download Open Source Software

Browse CVS Repository

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

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


Revision 1.3 - (show annotations) (download) (as text)
Thu Dec 21 08:11:51 2006 UTC (17 years, 3 months ago) by shinsuke
Branch: MAIN
Changes since 1.2: +5 -0 lines
File MIME type: application/xml
added log4j

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

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