Develop and Download Open Source Software

Browse CVS Repository

Annotation of /pal/blog/project.xml

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


Revision 1.2 - (hide annotations) (download) (as text)
Sat Nov 5 11:07:45 2005 UTC (18 years, 5 months ago) by shinsuke
Branch: MAIN
Changes since 1.1: +3 -4 lines
File MIME type: application/xml
moved hsql to mysql. added o/r mapping and test case.

1 shinsuke 1.1 <?xml version="1.0" encoding="UTF-8"?>
2     <!--
3     Copyright 2004 The Apache Software Foundation
4    
5     Licensed under the Apache License, Version 2.0 (the "License");
6     you may not use this file except in compliance with the License.
7     You may obtain a copy of the License at
8    
9     http://www.apache.org/licenses/LICENSE-2.0
10    
11     Unless required by applicable law or agreed to in writing, software
12     distributed under the License is distributed on an "AS IS" BASIS,
13     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14     See the License for the specific language governing permissions and
15     limitations under the License.
16    
17 shinsuke 1.2 $Id: project.xml,v 1.1.1.1 2005/11/03 22:57:37 shinsuke Exp $
18 shinsuke 1.1 -->
19    
20     <project>
21     <pomVersion>3</pomVersion>
22     <groupId>pal</groupId>
23     <artifactId>blog</artifactId>
24     <name>Blog Portlet</name>
25     <description>Blog Portlet</description>
26     <shortDescription>Blog</shortDescription>
27    
28     <issueTrackingUrl>https://sourceforge.jp/projects/pal/tracker/</issueTrackingUrl>
29     <siteAddress>shell.sourceforge.jp</siteAddress>
30     <siteDirectory>/home/groups/p/pa/pal/htdocs/blog</siteDirectory>
31     <distributionDirectory>/home/groups/p/pa/pal/htdocs/distributions</distributionDirectory>
32    
33     <repository>
34     <connection>scm:cvs:pserver:anonymous@cvs.sourceforge.jp:/cvsroot/pal:blog</connection>
35     <developerConnection>scm:cvs:ext:${maven.username}@cvs.sourceforge.jp:/cvsroot/pal:blog</developerConnection>
36     <url>http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/pal/blog</url>
37     </repository>
38    
39     <mailingLists>
40     <mailingList>
41     <name>CVS Notification List</name>
42     <subscribe>http://lists.sourceforge.jp/mailman/listinfo/pal-cvs</subscribe>
43     <unsubscribe>http://lists.sourceforge.jp/mailman/listinfo/pal-cvs</unsubscribe>
44     <archive>http://lists.sourceforge.jp/mailman/archives/pal-cvs/</archive>
45     </mailingList>
46     </mailingLists>
47    
48     <developers>
49     <developer>
50     <name>Shinsuke Sugaya</name>
51     <id>shinsuke</id>
52     <email>shinsuke@users.sourceforge.jp</email>
53     <organization>marevol.com</organization>
54     <roles>
55     <role>Java Developer</role>
56     </roles>
57     <timezone>+9</timezone>
58     </developer>
59     </developers>
60    
61     <dependencies>
62     <dependency>
63     <groupId>jetplume</groupId>
64     <artifactId>bridges-myfaces</artifactId>
65     <version>${bridges.myfaces.version}</version>
66     <type>jar</type>
67     <properties>
68     <war.bundle>true</war.bundle>
69     </properties>
70     </dependency>
71    
72     <dependency>
73     <groupId>marevol</groupId>
74     <artifactId>marevol-utils</artifactId>
75     <version>0.1-SNAPSHOT</version>
76     <type>jar</type>
77     <properties>
78     <war.bundle>true</war.bundle>
79     </properties>
80     </dependency>
81    
82     <dependency>
83     <groupId>marevol</groupId>
84     <artifactId>hibernate-utils</artifactId>
85     <version>0.1-SNAPSHOT</version>
86     <type>jar</type>
87     <properties>
88     <war.bundle>true</war.bundle>
89     </properties>
90     </dependency>
91    
92     <dependency>
93     <groupId>jetspeed2</groupId>
94     <artifactId>jetspeed-api</artifactId>
95     <version>${jetspeed.version}</version>
96     <type>jar</type>
97     <properties>
98     <war.bundle>false</war.bundle>
99     </properties>
100     </dependency>
101     <dependency>
102     <id>jetspeed-header-resource</id>
103     <groupId>jetspeed2</groupId>
104     <version>${jetspeed.version}</version>
105     <properties>
106     <war.bundle>false</war.bundle>
107     </properties>
108     </dependency>
109    
110    
111     <dependency>
112     <id>servletapi</id>
113     <version>2.3</version>
114     <properties>
115     <war.bundle>false</war.bundle>
116     </properties>
117     </dependency>
118     <dependency>
119     <groupId>portlet-api</groupId>
120     <artifactId>portlet-api</artifactId>
121     <version>1.0</version>
122     <properties>
123     <war.bundle>false</war.bundle>
124     </properties>
125     </dependency>
126     <!-- warred jars -->
127     <dependency>
128     <groupId>commons-beanutils</groupId>
129     <artifactId>commons-beanutils</artifactId>
130     <version>1.6.1</version>
131     <url>http://jakarta.apache.org/commons/beanutils.html</url>
132     <properties>
133     <war.bundle>true</war.bundle>
134     </properties>
135     </dependency>
136     <dependency>
137     <groupId>commons-codec</groupId>
138     <artifactId>commons-codec</artifactId>
139     <version>1.2</version>
140     <url>http://jakarta.apache.org/commons/codec/</url>
141     <properties>
142     <war.bundle>true</war.bundle>
143     </properties>
144     </dependency>
145     <dependency>
146     <groupId>commons-collections</groupId>
147     <artifactId>commons-collections</artifactId>
148     <version>2.1</version>
149     <url>http://jakarta.apache.org/commons/collections.html</url>
150     <properties>
151     <war.bundle>true</war.bundle>
152     </properties>
153     </dependency>
154     <dependency>
155     <groupId>commons-digester</groupId>
156     <artifactId>commons-digester</artifactId>
157     <version>1.5</version>
158     <url>http://jakarta.apache.org/commons/digester.html</url>
159     <properties>
160     <war.bundle>true</war.bundle>
161     </properties>
162     </dependency>
163     <dependency>
164     <groupId>commons-fileupload</groupId>
165     <artifactId>commons-fileupload</artifactId>
166     <version>1.0</version>
167     <properties>
168     <war.bundle>true</war.bundle>
169     </properties>
170     </dependency>
171     <dependency>
172     <id>log4j</id>
173     <version>1.2.9</version>
174     <properties>
175     <war.bundle>true</war.bundle>
176     </properties>
177     </dependency>
178    
179     <dependency>
180     <groupId>myfaces</groupId>
181     <artifactId>myfaces-all</artifactId>
182     <version>1.1.0</version>
183     <properties>
184     <war.bundle>true</war.bundle>
185     </properties>
186     </dependency>
187    
188     <dependency>
189     <groupId>commons-logging</groupId>
190     <artifactId>commons-logging</artifactId>
191     <version>1.0.4</version>
192     <url>http://jakarta.apache.org/commons/logging.html</url>
193     <properties>
194     <war.bundle>true</war.bundle>
195     </properties>
196     </dependency>
197     <dependency>
198     <groupId>commons-el</groupId>
199     <artifactId>commons-el</artifactId>
200     <version>1.0</version>
201     <url>http://jakarta.apache.org/commons/el/</url>
202     <properties>
203     <war.bundle>true</war.bundle>
204     </properties>
205     </dependency>
206 shinsuke 1.2 <!--
207 shinsuke 1.1 <dependency>
208     <groupId>hsqldb</groupId>
209     <artifactId>hsqldb</artifactId>
210     <version>1.7.3.3</version>
211     <properties>
212     <war.bundle>true</war.bundle>
213     </properties>
214     </dependency>
215 shinsuke 1.2 -->
216 shinsuke 1.1 <dependency>
217     <groupId>mysql</groupId>
218     <artifactId>mysql-connector-java</artifactId>
219     <version>3.0.10</version>
220     <properties>
221     <war.bundle>true</war.bundle>
222     </properties>
223     </dependency>
224     <!-- Hibernate -->
225     <dependency>
226     <groupId>hibernate</groupId>
227     <artifactId>hibernate</artifactId>
228     <version>3.0.5</version>
229     <properties>
230     <war.bundle>true</war.bundle>
231     </properties>
232     </dependency>
233    
234     <dependency>
235     <groupId>ehcache</groupId>
236     <artifactId>ehcache</artifactId>
237     <version>1.1</version>
238     <properties>
239     <war.bundle>true</war.bundle>
240     </properties>
241     </dependency>
242    
243     <dependency>
244     <groupId>swarmcache</groupId>
245     <artifactId>swarmcache</artifactId>
246     <version>1.0RC2</version>
247     <properties>
248     <war.bundle>true</war.bundle>
249     </properties>
250     </dependency>
251    
252     <dependency>
253     <groupId>jboss</groupId>
254     <artifactId>jboss-cache</artifactId>
255     <version>1.2.2</version>
256     <properties>
257     <war.bundle>true</war.bundle>
258     </properties>
259     </dependency>
260    
261     <dependency>
262     <groupId>jgroups</groupId>
263     <artifactId>jgroups-all</artifactId>
264     <version>2.2.7</version>
265     <properties>
266     <war.bundle>true</war.bundle>
267     </properties>
268     </dependency>
269    
270     <dependency>
271     <groupId>jta</groupId>
272     <artifactId>jta</artifactId>
273     <version>1.0.1B</version>
274     <properties>
275     <war.bundle>true</war.bundle>
276     </properties>
277     </dependency>
278    
279     <dependency>
280     <groupId>c3p0</groupId>
281     <artifactId>c3p0</artifactId>
282     <version>0.8.5.2</version>
283     <properties>
284     <war.bundle>true</war.bundle>
285     </properties>
286     </dependency>
287    
288     <dependency>
289     <groupId>j2ee</groupId>
290     <artifactId>connector</artifactId>
291     <version>1.0</version>
292     <properties>
293     <war.bundle>true</war.bundle>
294     </properties>
295     </dependency>
296    
297     <dependency>
298     <groupId>jboss</groupId>
299     <artifactId>jboss-system</artifactId>
300     <version>4.0.2</version>
301     <properties>
302     <war.bundle>true</war.bundle>
303     </properties>
304     </dependency>
305    
306     <dependency>
307     <groupId>asm</groupId>
308     <artifactId>asm-attrs</artifactId>
309     <version>1.5.3</version>
310     <properties>
311     <war.bundle>true</war.bundle>
312     </properties>
313     </dependency>
314    
315     <dependency>
316     <groupId>j2ee</groupId>
317     <artifactId>jacc</artifactId>
318     <version>1_0-fr</version>
319     <properties>
320     <war.bundle>true</war.bundle>
321     </properties>
322     </dependency>
323    
324     <dependency>
325     <groupId>dom4j</groupId>
326     <artifactId>dom4j</artifactId>
327     <version>1.6</version>
328     <properties>
329     <war.bundle>true</war.bundle>
330     </properties>
331     </dependency>
332    
333     <dependency>
334     <groupId>hibernate</groupId>
335     <artifactId>antlr</artifactId>
336     <version>2.7.5H3</version>
337     <properties>
338     <war.bundle>true</war.bundle>
339     </properties>
340     </dependency>
341    
342     <dependency>
343     <groupId>cglib</groupId>
344     <artifactId>cglib</artifactId>
345     <version>2.1</version>
346     <properties>
347     <war.bundle>true</war.bundle>
348     </properties>
349     </dependency>
350    
351     <dependency>
352     <groupId>jboss</groupId>
353     <artifactId>jboss-common</artifactId>
354     <version>4.0.2</version>
355     <properties>
356     <war.bundle>true</war.bundle>
357     </properties>
358     </dependency>
359    
360     <dependency>
361     <groupId>opensymphony</groupId>
362     <artifactId>oscache</artifactId>
363     <version>2.1</version>
364     <properties>
365     <war.bundle>true</war.bundle>
366     </properties>
367     </dependency>
368    
369     <dependency>
370     <groupId>asm</groupId>
371     <artifactId>asm</artifactId>
372     <version>1.5.3</version>
373     <properties>
374     <war.bundle>true</war.bundle>
375     </properties>
376     </dependency>
377    
378     <dependency>
379     <groupId>jboss</groupId>
380     <artifactId>jboss-jmx</artifactId>
381     <version>4.0.2</version>
382     <properties>
383     <war.bundle>true</war.bundle>
384     </properties>
385     </dependency>
386    
387     <dependency>
388     <groupId>jaxen</groupId>
389     <artifactId>jaxen</artifactId>
390     <version>1.1-beta-4</version>
391     <properties>
392     <war.bundle>true</war.bundle>
393     </properties>
394     </dependency>
395    
396     <dependency>
397     <groupId>proxool</groupId>
398     <artifactId>proxool</artifactId>
399     <version>0.8.3</version>
400     <properties>
401     <war.bundle>true</war.bundle>
402     </properties>
403     </dependency>
404    
405     <dependency>
406     <groupId>concurrent</groupId>
407     <artifactId>concurrent</artifactId>
408     <version>1.3.4</version>
409     <properties>
410     <war.bundle>true</war.bundle>
411     </properties>
412     </dependency>
413    
414     </dependencies>
415    
416    
417     <build>
418     <sourceDirectory>src/java</sourceDirectory>
419     <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
420     <unitTest>
421     <includes>
422     <include>**/*Test.java</include>
423     </includes>
424     </unitTest>
425     <resources>
426     <resource>
427     <directory>${basedir}/src/java/</directory>
428     <includes>
429     <include>**/*.properties</include>
430     <include>**/*.xml</include>
431     <include>**/*.dicon</include>
432     </includes>
433     <filtering>false</filtering>
434     </resource>
435     </resources>
436     </build>
437    
438     <reports>
439     <report>maven-jdepend-plugin</report>
440     <report>maven-checkstyle-plugin</report>
441     <report>maven-pmd-plugin</report>
442     <report>maven-changelog-plugin</report>
443     <report>maven-file-activity-plugin</report>
444     <report>maven-developer-activity-plugin</report>
445     <report>maven-license-plugin</report>
446     <report>maven-javadoc-plugin</report>
447     <report>maven-jxr-plugin</report>
448     <report>maven-junit-report-plugin</report>
449     <report>maven-tasklist-plugin</report>
450     </reports>
451     <properties/>
452     </project>

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