Develop and Download Open Source Software

Browse CVS Repository

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

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


Revision 1.17 - (hide annotations) (download) (as text)
Fri Dec 29 12:35:13 2006 UTC (17 years, 3 months ago) by shinsuke
Branch: MAIN
Changes since 1.16: +9 -4 lines
File MIME type: application/xml
not display unneeded buttons. removed unneeded tags. checked MIME type.

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

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