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.16 - (hide annotations) (download) (as text)
Tue Dec 19 10:58:30 2006 UTC (17 years, 3 months ago) by shinsuke
Branch: MAIN
Changes since 1.15: +5 -0 lines
File MIME type: application/xml
added xerces 2.8.1

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     </repositories>
134     <pluginRepositories>
135     <pluginRepository>
136     <id>people.apache.org m2-snapshot</id>
137     <url>http://people.apache.org/repo/m2-snapshot-repository</url>
138     <snapshots>
139     <enabled>true</enabled>
140     </snapshots>
141     <releases>
142     <enabled>false</enabled>
143     </releases>
144     </pluginRepository>
145     <pluginRepository>
146     <id>snapshots.repository.codehaus.org</id>
147     <url>http://snapshots.repository.codehaus.org</url>
148     <snapshots>
149     <enabled>true</enabled>
150     </snapshots>
151     <releases>
152     <enabled>false</enabled>
153     </releases>
154     </pluginRepository>
155     </pluginRepositories>
156     <dependencies>
157 shinsuke 1.11 <!-- SERVLET DEV: BEGIN @@@
158 shinsuke 1.9 <dependency>
159     <groupId>jp.sf.pal</groupId>
160     <artifactId>faces-dev-filter</artifactId>
161 shinsuke 1.14 <version>0.1</version>
162 shinsuke 1.9 <scope>compile</scope>
163     </dependency>
164 shinsuke 1.11 @@@@ SERVLET DEV: END -->
165 shinsuke 1.15 <dependency>
166 shinsuke 1.16 <groupId>xerces</groupId>
167     <artifactId>xercesImpl</artifactId>
168     <version>2.8.1</version>
169     </dependency>
170     <dependency>
171 shinsuke 1.15 <groupId>org.apache.derby</groupId>
172     <artifactId>derby</artifactId>
173     <version>10.1.1.0</version>
174     </dependency>
175     <dependency>
176     <groupId>junit</groupId>
177     <artifactId>junit</artifactId>
178     <version>3.8.1</version>
179     <scope>test</scope>
180     </dependency>
181 shinsuke 1.7 <dependency>
182     <groupId>javax.servlet</groupId>
183     <artifactId>servlet-api</artifactId>
184     <version>2.3</version>
185     <scope>provided</scope>
186     </dependency>
187 shinsuke 1.15 <dependency>
188     <groupId>portlet-api</groupId>
189     <artifactId>portlet-api</artifactId>
190     <version>1.0</version>
191     <scope>provided</scope>
192     </dependency>
193     <dependency>
194     <groupId>jstl</groupId>
195     <artifactId>jstl</artifactId>
196     <version>1.1.2</version>
197     </dependency>
198     <dependency>
199     <groupId>commons-logging</groupId>
200     <artifactId>commons-logging</artifactId>
201     <version>1.0.4</version>
202     <scope>compile</scope>
203     </dependency>
204     <dependency>
205     <groupId>commons-lang</groupId>
206     <artifactId>commons-lang</artifactId>
207     <version>2.1</version>
208     </dependency>
209     <dependency>
210     <groupId>commons-fileupload</groupId>
211     <artifactId>commons-fileupload</artifactId>
212     <version>1.1</version>
213     </dependency>
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</version>
223     </dependency>
224     <dependency>
225     <groupId>jp.sf.pal</groupId>
226     <artifactId>tomahawk-bridge</artifactId>
227     <version>0.9</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     <dependency>
241     <groupId>com.marevol</groupId>
242     <artifactId>marevol-faces-utils</artifactId>
243     <version>0.3</version>
244     </dependency>
245     <dependency>
246     <groupId>org.seasar.container</groupId>
247     <artifactId>s2-framework</artifactId>
248     <version>2.4.5</version>
249     </dependency>
250     <dependency>
251     <groupId>org.seasar.container</groupId>
252     <artifactId>s2-extension</artifactId>
253     <version>2.4.5</version>
254     </dependency>
255     <dependency>
256     <groupId>org.seasar.teeda</groupId>
257     <artifactId>teeda-core</artifactId>
258     <version>1.0.3-20061215</version>
259     <exclusions>
260     <exclusion>
261     <groupId>rhino</groupId>
262     <artifactId>rhino</artifactId>
263     </exclusion>
264     </exclusions>
265     </dependency>
266     <dependency>
267     <groupId>org.seasar.portlet</groupId>
268     <artifactId>s2-portlet</artifactId>
269     <version>1.0.6</version>
270     </dependency>
271     <dependency>
272     <groupId>org.seasar.jcr</groupId>
273     <artifactId>s2-jcr</artifactId>
274     <version>0.1.0-SNAPSHOT</version>
275     </dependency>
276     <!-- Jackrabbit -->
277     <dependency>
278     <groupId>org.apache.jackrabbit</groupId>
279     <artifactId>jackrabbit-core</artifactId>
280     <version>1.1</version>
281     <type>jar</type>
282     </dependency>
283     <dependency>
284     <groupId>org.apache.jackrabbit</groupId>
285     <artifactId>jackrabbit-jcr-commons</artifactId>
286     <version>1.1</version>
287     <type>jar</type>
288     </dependency>
289     <dependency>
290     <groupId>org.apache.jackrabbit</groupId>
291     <artifactId>jackrabbit-index-filters</artifactId>
292     <version>1.1</version>
293     <type>jar</type>
294     </dependency>
295     <dependency>
296     <groupId>org.apache.jackrabbit</groupId>
297     <artifactId>jackrabbit-backup</artifactId>
298     <version>1.1</version>
299     <type>jar</type>
300     </dependency>
301     <dependency>
302     <groupId>nekohtml</groupId>
303     <artifactId>nekohtml</artifactId>
304     <version>0.9.5</version>
305     </dependency>
306     </dependencies>
307     <reporting>
308     <plugins>
309     <plugin>
310     <artifactId>maven-project-info-reports-plugin</artifactId>
311     </plugin>
312     <!--
313 shinsuke 1.1 <plugin>
314     <groupId>org.codehaus.mojo</groupId>
315     <artifactId>surefire-report-maven-plugin</artifactId>
316     </plugin>
317     -->
318 shinsuke 1.15 <plugin>
319     <groupId>org.codehaus.mojo</groupId>
320     <artifactId>changelog-maven-plugin</artifactId>
321     </plugin>
322     <plugin>
323     <groupId>org.codehaus.mojo</groupId>
324     <artifactId>taglist-maven-plugin</artifactId>
325     <configuration>
326     <tags>
327     <tag>FIXME</tag>
328     <tag>TODO</tag>
329     <tag>XXX</tag>
330     </tags>
331     </configuration>
332     </plugin>
333     <plugin>
334     <groupId>org.codehaus.mojo</groupId>
335     <artifactId>cobertura-maven-plugin</artifactId>
336     <version>2.0-SNAPSHOT</version>
337     <!--
338 shinsuke 1.1 <configuration>
339     <outputDirectory>${project.build.directory}/site/cobertura</outputDirectory>
340     </configuration>
341     -->
342 shinsuke 1.15 </plugin>
343     <!--
344 shinsuke 1.1 <plugin>
345     <artifactId>maven-javadoc-plugin</artifactId>
346     </plugin>
347     <plugin>
348     <artifactId>maven-clover-plugin</artifactId>
349     </plugin>
350     <plugin>
351     <artifactId>maven-pmd-plugin</artifactId>
352     </plugin>
353     <plugin>
354     <artifactId>maven-checkstyle-plugin</artifactId>
355     </plugin>
356     -->
357 shinsuke 1.15 </plugins>
358     </reporting>
359 shinsuke 1.1 </project>

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