Develop and Download Open Source Software

Browse CVS Repository

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

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


Revision 1.9 - (show annotations) (download) (as text)
Thu Nov 30 14:27:21 2006 UTC (17 years, 4 months ago) by shinsuke
Branch: MAIN
Changes since 1.8: +33 -17 lines
File MIME type: application/xml
changed to IDE based development

1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <groupId>jp.sf.pal</groupId>
6 <artifactId>cms-portlet-project</artifactId>
7 <packaging>war</packaging>
8 <version>0.3-SNAPSHOT</version>
9 <name>CMS Portlet Project</name>
10 <description></description>
11 <url>http://pal.sourceforge.jp/</url>
12 <inceptionYear>2005</inceptionYear>
13 <developers>
14 <developer>
15 <id>shinsuke</id>
16 <name>Shinsuke Sugaya</name>
17 <email>shinsuke_at_yahoo.co.jp</email>
18 <url>http://d.hatena.ne.jp/shinsuke_sugaya/</url>
19 <organization />
20 <organizationUrl />
21 <timezone>+9</timezone>
22 </developer>
23 </developers>
24 <licenses>
25 <license>
26 <name>The Apache Software License, Version 2.0</name>
27 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
28 <distribution>repo</distribution>
29 </license>
30 </licenses>
31 <scm>
32 <connection>
33 scm:cvs:pserver:anonymous@cvs.sourceforge.jp:/cvsroot/pal:cms-portlet
34 </connection>
35 <developerConnection>
36 scm:cvs:pserver:anonymous@cvs.sourceforge.jp:/cvsroot/pal:cms-portlet
37 </developerConnection>
38 <url>http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/pal/cms-portlet</url>
39 </scm>
40 <organization>
41 <name>Portal Application Laboratory</name>
42 <url>http://pal.sourceforge.jp/</url>
43 </organization>
44 <build>
45 <finalName>cms-portlet</finalName>
46 <defaultGoal>validate</defaultGoal>
47 <pluginManagement>
48 <plugins>
49 <plugin>
50 <artifactId>maven-compiler-plugin</artifactId>
51 <configuration>
52 <source>1.4</source>
53 <target>1.4</target>
54 <encoding>UTF-8</encoding>
55 </configuration>
56 </plugin>
57 <plugin>
58 <artifactId>maven-deploy-plugin</artifactId>
59 <configuration>
60 <updateReleaseInfo>true</updateReleaseInfo>
61 </configuration>
62 </plugin>
63 <!--
64 <plugin>
65 <artifactId>maven-site-plugin</artifactId>
66 <configuration>
67 <outputEncodinf>UTF-8</outputEncodinf>
68 </configuration>
69 </plugin>
70 <plugin>
71 <artifactId>maven-surefire-plugin</artifactId>
72 <configuration>
73 <forkMode>none</forkMode>
74 </configuration>
75 </plugin>
76 -->
77 <plugin>
78 <groupId>org.codehaus.mojo</groupId>
79 <artifactId>cobertura-maven-plugin</artifactId>
80 <version>2.0-SNAPSHOT</version>
81 <executions>
82 <execution>
83 <goals>
84 <goal>clean</goal>
85 </goals>
86 </execution>
87 </executions>
88 </plugin>
89 </plugins>
90 </pluginManagement>
91 <plugins>
92 <plugin>
93 <artifactId>maven-source-plugin</artifactId>
94 <executions>
95 <execution>
96 <id>source-jar</id>
97 <phase>package</phase>
98 <goals>
99 <goal>jar</goal>
100 </goals>
101 </execution>
102 </executions>
103 </plugin>
104 <!--
105 <plugin>
106 <artifactId>maven-javadoc-plugin</artifactId>
107 <executions>
108 <execution>
109 <id>javadoc-jar</id>
110 <phase>package</phase>
111 <goals>
112 <goal>jar</goal>
113 </goals>
114 </execution>
115 </executions>
116 <configuration>
117 <charset>UTF-8</charset>
118 </configuration>
119 </plugin>
120 -->
121 </plugins>
122 </build>
123 <repositories>
124 <repository>
125 <id>maven.marevol.com</id>
126 <name>Maven2 Repository on marevol.com</name>
127 <url>http://www.marevol.com/maven2</url>
128 </repository>
129 <repository>
130 <id>maven.seasar.org</id>
131 <name>The Seasar Foundation Maven2 Repository</name>
132 <url>http://maven.seasar.org/maven2</url>
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 <!-- For Development -->
159 <dependency>
160 <groupId>jp.sf.pal</groupId>
161 <artifactId>faces-dev-filter</artifactId>
162 <version>0.1-SNAPSHOT</version>
163 <scope>compile</scope>
164 </dependency>
165
166 <dependency>
167 <groupId>org.apache.derby</groupId>
168 <artifactId>derby</artifactId>
169 <version>10.1.1.0</version>
170 </dependency>
171
172
173 <dependency>
174 <groupId>junit</groupId>
175 <artifactId>junit</artifactId>
176 <version>3.8.1</version>
177 <scope>test</scope>
178 </dependency>
179 <dependency>
180 <groupId>javax.servlet</groupId>
181 <artifactId>servlet-api</artifactId>
182 <version>2.3</version>
183 <scope>provided</scope>
184 </dependency>
185 <dependency>
186 <groupId>portlet-api</groupId>
187 <artifactId>portlet-api</artifactId>
188 <version>1.0</version>
189 <scope>provided</scope>
190 </dependency>
191 <dependency>
192 <groupId>jstl</groupId>
193 <artifactId>jstl</artifactId>
194 <version>1.1.2</version>
195 </dependency>
196 <dependency>
197 <groupId>commons-logging</groupId>
198 <artifactId>commons-logging</artifactId>
199 <version>1.0.4</version>
200 <scope>compile</scope>
201 </dependency>
202 <dependency>
203 <groupId>commons-lang</groupId>
204 <artifactId>commons-lang</artifactId>
205 <version>2.1</version>
206 </dependency>
207
208 <dependency>
209 <groupId>org.apache.portals.bridges</groupId>
210 <artifactId>portals-bridges-portletfilter</artifactId>
211 <version>1.0.1-20061109</version>
212 </dependency>
213 <dependency>
214 <groupId>jp.sf.pal</groupId>
215 <artifactId>faces-response-filter</artifactId>
216 <version>0.1-SNAPSHOT</version>
217 </dependency>
218 <dependency>
219 <groupId>jp.sf.pal</groupId>
220 <artifactId>tomahawk-bridge</artifactId>
221 <version>0.9-SNAPSHOT</version>
222 </dependency>
223 <dependency>
224 <groupId>org.apache.myfaces.tomahawk</groupId>
225 <artifactId>tomahawk</artifactId>
226 <version>1.1.3</version>
227 <exclusions>
228 <exclusion>
229 <groupId>struts</groupId>
230 <artifactId>struts</artifactId>
231 </exclusion>
232 </exclusions>
233 </dependency>
234
235 <dependency>
236 <groupId>com.marevol</groupId>
237 <artifactId>marevol-faces-utils</artifactId>
238 <version>0.3</version>
239 </dependency>
240
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.2</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 <dependency>
268 <groupId>org.seasar.jcr</groupId>
269 <artifactId>s2-jcr</artifactId>
270 <version>0.1.0-SNAPSHOT</version>
271 </dependency>
272
273 <!-- Jackrabbit -->
274 <dependency>
275 <groupId>org.apache.jackrabbit</groupId>
276 <artifactId>jackrabbit-core</artifactId>
277 <version>1.1</version>
278 <type>jar</type>
279 </dependency>
280 <dependency>
281 <groupId>org.apache.jackrabbit</groupId>
282 <artifactId>jackrabbit-jcr-commons</artifactId>
283 <version>1.1</version>
284 <type>jar</type>
285 </dependency>
286 <dependency>
287 <groupId>org.apache.jackrabbit</groupId>
288 <artifactId>jackrabbit-index-filters</artifactId>
289 <version>1.1</version>
290 <type>jar</type>
291 </dependency>
292 <dependency>
293 <groupId>org.apache.jackrabbit</groupId>
294 <artifactId>jackrabbit-backup</artifactId>
295 <version>1.1</version>
296 <type>jar</type>
297 </dependency>
298
299 <dependency>
300 <groupId>nekohtml</groupId>
301 <artifactId>nekohtml</artifactId>
302 <version>0.9.5</version>
303 </dependency>
304 </dependencies>
305
306 <reporting>
307 <plugins>
308 <plugin>
309 <artifactId>maven-project-info-reports-plugin</artifactId>
310 </plugin>
311 <!--
312 <plugin>
313 <groupId>org.codehaus.mojo</groupId>
314 <artifactId>surefire-report-maven-plugin</artifactId>
315 </plugin>
316 -->
317 <plugin>
318 <groupId>org.codehaus.mojo</groupId>
319 <artifactId>changelog-maven-plugin</artifactId>
320 </plugin>
321 <plugin>
322 <groupId>org.codehaus.mojo</groupId>
323 <artifactId>taglist-maven-plugin</artifactId>
324 <configuration>
325 <tags>
326 <tag>FIXME</tag>
327 <tag>TODO</tag>
328 <tag>XXX</tag>
329 </tags>
330 </configuration>
331 </plugin>
332 <plugin>
333 <groupId>org.codehaus.mojo</groupId>
334 <artifactId>cobertura-maven-plugin</artifactId>
335 <version>2.0-SNAPSHOT</version>
336 <!--
337 <configuration>
338 <outputDirectory>${project.build.directory}/site/cobertura</outputDirectory>
339 </configuration>
340 -->
341 </plugin>
342 <!--
343 <plugin>
344 <artifactId>maven-javadoc-plugin</artifactId>
345 </plugin>
346 <plugin>
347 <artifactId>maven-clover-plugin</artifactId>
348 </plugin>
349 <plugin>
350 <artifactId>maven-pmd-plugin</artifactId>
351 </plugin>
352 <plugin>
353 <artifactId>maven-checkstyle-plugin</artifactId>
354 </plugin>
355 -->
356 </plugins>
357 </reporting>
358 </project>

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