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.7 - (show annotations) (download) (as text)
Sat Nov 11 12:19:00 2006 UTC (17 years, 5 months ago) by shinsuke
Branch: MAIN
Changes since 1.6: +10 -4 lines
File MIME type: application/xml
changed s2 to 2.4.0

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>pom</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 <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 <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 <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 <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 </plugins>
121 </build>
122 <modules>
123 <module>cms-lib</module>
124 <module>cms-portlet</module>
125 </modules>
126 <repositories>
127 <repository>
128 <id>maven.marevol.com</id>
129 <name>Maven2 Repository on marevol.com</name>
130 <url>http://www.marevol.com/maven2</url>
131 </repository>
132 </repositories>
133 <pluginRepositories>
134 <pluginRepository>
135 <id>people.apache.org m2-snapshot</id>
136 <url>http://people.apache.org/repo/m2-snapshot-repository</url>
137 <snapshots>
138 <enabled>true</enabled>
139 </snapshots>
140 <releases>
141 <enabled>false</enabled>
142 </releases>
143 </pluginRepository>
144 <pluginRepository>
145 <id>snapshots.repository.codehaus.org</id>
146 <url>http://snapshots.repository.codehaus.org</url>
147 <snapshots>
148 <enabled>true</enabled>
149 </snapshots>
150 <releases>
151 <enabled>false</enabled>
152 </releases>
153 </pluginRepository>
154 </pluginRepositories>
155 <dependencies>
156 <dependency>
157 <groupId>junit</groupId>
158 <artifactId>junit</artifactId>
159 <version>3.8.1</version>
160 <scope>test</scope>
161 </dependency>
162 <dependency>
163 <groupId>javax.servlet</groupId>
164 <artifactId>servlet-api</artifactId>
165 <version>2.3</version>
166 <scope>provided</scope>
167 </dependency>
168 <dependency>
169 <groupId>portlet-api</groupId>
170 <artifactId>portlet-api</artifactId>
171 <version>1.0</version>
172 <scope>provided</scope>
173 </dependency>
174 <dependency>
175 <groupId>jstl</groupId>
176 <artifactId>jstl</artifactId>
177 <version>1.1.2</version>
178 </dependency>
179 <dependency>
180 <groupId>commons-logging</groupId>
181 <artifactId>commons-logging</artifactId>
182 <version>1.0.4</version>
183 <scope>compile</scope>
184 </dependency>
185 <dependency>
186 <groupId>commons-lang</groupId>
187 <artifactId>commons-lang</artifactId>
188 <version>2.1</version>
189 </dependency>
190
191 <dependency>
192 <groupId>org.apache.portals.bridges</groupId>
193 <artifactId>portals-bridges-portletfilter</artifactId>
194 <version>1.0.1-20061109</version>
195 </dependency>
196 <dependency>
197 <groupId>jp.sf.pal</groupId>
198 <artifactId>bridges-myfaces</artifactId>
199 <version>0.8</version>
200 <exclusions>
201 <exclusion>
202 <groupId>struts</groupId>
203 <artifactId>struts</artifactId>
204 </exclusion>
205 </exclusions>
206 </dependency>
207 <dependency>
208 <groupId>org.apache.myfaces.tomahawk</groupId>
209 <artifactId>tomahawk</artifactId>
210 <version>1.1.3</version>
211 <exclusions>
212 <exclusion>
213 <groupId>struts</groupId>
214 <artifactId>struts</artifactId>
215 </exclusion>
216 </exclusions>
217 </dependency>
218
219 <dependency>
220 <groupId>com.marevol</groupId>
221 <artifactId>marevol-faces-utils</artifactId>
222 <version>0.3</version>
223 </dependency>
224
225 <dependency>
226 <groupId>org.seasar.container</groupId>
227 <artifactId>s2-framework</artifactId>
228 <version>2.4.0</version>
229 </dependency>
230 <dependency>
231 <groupId>org.seasar.container</groupId>
232 <artifactId>s2-extension</artifactId>
233 <version>2.4.0</version>
234 </dependency>
235 <dependency>
236 <groupId>org.seasar.teeda</groupId>
237 <artifactId>teeda-core</artifactId>
238 <version>1.0</version>
239 <exclusions>
240 <exclusion>
241 <groupId>rhino</groupId>
242 <artifactId>rhino</artifactId>
243 </exclusion>
244 </exclusions>
245 </dependency>
246 <dependency>
247 <groupId>org.seasar.portlet</groupId>
248 <artifactId>s2-portlet</artifactId>
249 <version>1.0.5</version>
250 </dependency>
251 <dependency>
252 <groupId>org.seasar.jcr</groupId>
253 <artifactId>s2-jcr</artifactId>
254 <version>0.1.0-SNAPSHOT</version>
255 </dependency>
256
257 <!-- Jackrabbit -->
258 <dependency>
259 <groupId>org.apache.jackrabbit</groupId>
260 <artifactId>jackrabbit-core</artifactId>
261 <version>1.1</version>
262 <type>jar</type>
263 </dependency>
264 <dependency>
265 <groupId>org.apache.jackrabbit</groupId>
266 <artifactId>jackrabbit-jcr-commons</artifactId>
267 <version>1.1</version>
268 <type>jar</type>
269 </dependency>
270 <dependency>
271 <groupId>org.apache.jackrabbit</groupId>
272 <artifactId>jackrabbit-index-filters</artifactId>
273 <version>1.1</version>
274 <type>jar</type>
275 </dependency>
276 <dependency>
277 <groupId>org.apache.jackrabbit</groupId>
278 <artifactId>jackrabbit-backup</artifactId>
279 <version>1.1</version>
280 <type>jar</type>
281 </dependency>
282
283 <dependency>
284 <groupId>nekohtml</groupId>
285 <artifactId>nekohtml</artifactId>
286 <version>0.9.5</version>
287 </dependency>
288 </dependencies>
289
290 <reporting>
291 <plugins>
292 <plugin>
293 <artifactId>maven-project-info-reports-plugin</artifactId>
294 </plugin>
295 <!--
296 <plugin>
297 <groupId>org.codehaus.mojo</groupId>
298 <artifactId>surefire-report-maven-plugin</artifactId>
299 </plugin>
300 -->
301 <plugin>
302 <groupId>org.codehaus.mojo</groupId>
303 <artifactId>changelog-maven-plugin</artifactId>
304 </plugin>
305 <plugin>
306 <groupId>org.codehaus.mojo</groupId>
307 <artifactId>taglist-maven-plugin</artifactId>
308 <configuration>
309 <tags>
310 <tag>FIXME</tag>
311 <tag>TODO</tag>
312 <tag>XXX</tag>
313 </tags>
314 </configuration>
315 </plugin>
316 <plugin>
317 <groupId>org.codehaus.mojo</groupId>
318 <artifactId>cobertura-maven-plugin</artifactId>
319 <version>2.0-SNAPSHOT</version>
320 <!--
321 <configuration>
322 <outputDirectory>${project.build.directory}/site/cobertura</outputDirectory>
323 </configuration>
324 -->
325 </plugin>
326 <!--
327 <plugin>
328 <artifactId>maven-javadoc-plugin</artifactId>
329 </plugin>
330 <plugin>
331 <artifactId>maven-clover-plugin</artifactId>
332 </plugin>
333 <plugin>
334 <artifactId>maven-pmd-plugin</artifactId>
335 </plugin>
336 <plugin>
337 <artifactId>maven-checkstyle-plugin</artifactId>
338 </plugin>
339 -->
340 </plugins>
341 </reporting>
342 </project>

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