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.8 - (show annotations) (download) (as text)
Sat Jan 13 07:01:32 2007 UTC (17 years, 3 months ago) by shinsuke
Branch: MAIN
Changes since 1.7: +5 -5 lines
File MIME type: application/xml
fixed sync issue

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.4-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 <repository>
130 <id>java.net</id>
131 <url>https://maven-repository.dev.java.net/nonav/repository</url>
132 <layout>legacy</layout>
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 <!--
159 <dependency>
160 <groupId>log4j</groupId>
161 <artifactId>log4j</artifactId>
162 <version>1.2.9</version>
163 </dependency>
164 -->
165 <!-- SERVLET DEV: BEGIN @@@
166 <dependency>
167 <groupId>jp.sf.pal</groupId>
168 <artifactId>faces-dev-filter</artifactId>
169 <version>0.1</version>
170 <scope>compile</scope>
171 </dependency>
172 @@@@ SERVLET DEV: END -->
173 <dependency>
174 <groupId>xerces</groupId>
175 <artifactId>xercesImpl</artifactId>
176 <version>2.8.1</version>
177 </dependency>
178 <dependency>
179 <groupId>junit</groupId>
180 <artifactId>junit</artifactId>
181 <version>3.8.1</version>
182 <scope>test</scope>
183 </dependency>
184 <dependency>
185 <groupId>javax.servlet</groupId>
186 <artifactId>servlet-api</artifactId>
187 <version>2.3</version>
188 <scope>provided</scope>
189 </dependency>
190 <dependency>
191 <groupId>portlet-api</groupId>
192 <artifactId>portlet-api</artifactId>
193 <version>1.0</version>
194 <scope>provided</scope>
195 </dependency>
196 <dependency>
197 <groupId>javax.mail</groupId>
198 <artifactId>mail</artifactId>
199 <version>1.4</version>
200 </dependency>
201 <dependency>
202 <groupId>jstl</groupId>
203 <artifactId>jstl</artifactId>
204 <version>1.1.2</version>
205 </dependency>
206 <dependency>
207 <groupId>commons-logging</groupId>
208 <artifactId>commons-logging</artifactId>
209 <version>1.0.4</version>
210 <scope>compile</scope>
211 </dependency>
212 <dependency>
213 <groupId>commons-lang</groupId>
214 <artifactId>commons-lang</artifactId>
215 <version>2.1</version>
216 </dependency>
217 <dependency>
218 <groupId>commons-fileupload</groupId>
219 <artifactId>commons-fileupload</artifactId>
220 <version>1.1</version>
221 </dependency>
222 <dependency>
223 <groupId>org.apache.portals.bridges</groupId>
224 <artifactId>portals-bridges-portletfilter</artifactId>
225 <version>1.0.1-20070113</version>
226 </dependency>
227 <dependency>
228 <groupId>jp.sf.pal</groupId>
229 <artifactId>faces-response-filter</artifactId>
230 <version>0.2</version>
231 </dependency>
232 <dependency>
233 <groupId>jp.sf.pal</groupId>
234 <artifactId>tomahawk-bridge</artifactId>
235 <version>0.9.1</version>
236 </dependency>
237 <dependency>
238 <groupId>org.apache.myfaces.tomahawk</groupId>
239 <artifactId>tomahawk</artifactId>
240 <version>1.1.3</version>
241 <exclusions>
242 <exclusion>
243 <groupId>struts</groupId>
244 <artifactId>struts</artifactId>
245 </exclusion>
246 </exclusions>
247 </dependency>
248 <dependency>
249 <groupId>com.marevol</groupId>
250 <artifactId>marevol-faces-utils</artifactId>
251 <version>0.3</version>
252 </dependency>
253 <dependency>
254 <groupId>org.seasar.container</groupId>
255 <artifactId>s2-framework</artifactId>
256 <version>2.4.8</version>
257 </dependency>
258 <dependency>
259 <groupId>org.seasar.container</groupId>
260 <artifactId>s2-extension</artifactId>
261 <version>2.4.8</version>
262 </dependency>
263 <dependency>
264 <groupId>org.seasar.teeda</groupId>
265 <artifactId>teeda-core</artifactId>
266 <version>1.0.4-20061230</version>
267 <exclusions>
268 <exclusion>
269 <groupId>rhino</groupId>
270 <artifactId>rhino</artifactId>
271 </exclusion>
272 </exclusions>
273 </dependency>
274 <dependency>
275 <groupId>org.seasar.portlet</groupId>
276 <artifactId>s2-portlet</artifactId>
277 <version>1.0.6</version>
278 </dependency>
279 <!-- VFS -->
280 <dependency>
281 <groupId>org.apache.commons</groupId>
282 <artifactId>commons-vfs</artifactId>
283 <version>1.0-RC8</version>
284 </dependency>
285 </dependencies>
286 <reporting>
287 <plugins>
288 <plugin>
289 <artifactId>maven-project-info-reports-plugin</artifactId>
290 </plugin>
291 <!--
292 <plugin>
293 <groupId>org.codehaus.mojo</groupId>
294 <artifactId>surefire-report-maven-plugin</artifactId>
295 </plugin>
296 -->
297 <plugin>
298 <groupId>org.codehaus.mojo</groupId>
299 <artifactId>changelog-maven-plugin</artifactId>
300 </plugin>
301 <plugin>
302 <groupId>org.codehaus.mojo</groupId>
303 <artifactId>taglist-maven-plugin</artifactId>
304 <configuration>
305 <tags>
306 <tag>FIXME</tag>
307 <tag>TODO</tag>
308 <tag>XXX</tag>
309 </tags>
310 </configuration>
311 </plugin>
312 <plugin>
313 <groupId>org.codehaus.mojo</groupId>
314 <artifactId>cobertura-maven-plugin</artifactId>
315 <version>2.0-SNAPSHOT</version>
316 <!--
317 <configuration>
318 <outputDirectory>${project.build.directory}/site/cobertura</outputDirectory>
319 </configuration>
320 -->
321 </plugin>
322 <!--
323 <plugin>
324 <artifactId>maven-javadoc-plugin</artifactId>
325 </plugin>
326 <plugin>
327 <artifactId>maven-clover-plugin</artifactId>
328 </plugin>
329 <plugin>
330 <artifactId>maven-pmd-plugin</artifactId>
331 </plugin>
332 <plugin>
333 <artifactId>maven-checkstyle-plugin</artifactId>
334 </plugin>
335 -->
336 </plugins>
337 </reporting>
338 </project>

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