Develop and Download Open Source Software

Browse Subversion Repository

Contents of /pal-admin-ex/trunk/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 896 - (show annotations) (download) (as text)
Mon Apr 28 08:45:08 2008 UTC (16 years, 1 month ago) by shinsuke
File MIME type: application/xml
File size: 9863 byte(s)
separated from pal-admin.
1 <?xml version="1.0" encoding="UTF-8"?>
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>pal-admin-ex</artifactId>
6 <version>0.1</version>
7 <packaging>war</packaging>
8 <name>Administration Extension Tools for PAL Portal</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>scm:svn:http://svn.sourceforge.jp/svnroot/pal/pal-admin-ex/trunk/</connection>
32 <developerConnection>scm:svn:svn+ssh://${username}@svn.sourceforge.jp/svnroot/pal/pal-admin-ex/trunk/</developerConnection>
33 <url>http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi/pal-admin-ex/trunk/?root=pal</url>
34 </scm>
35 <organization>
36 <name>Portal Application Laboratory</name>
37 <url>http://pal.sourceforge.jp/</url>
38 </organization>
39 <build>
40 <finalName>pal-admin-ex</finalName>
41 <defaultGoal>validate</defaultGoal>
42 <pluginManagement>
43 <plugins>
44 <plugin>
45 <artifactId>maven-compiler-plugin</artifactId>
46 <configuration>
47 <source>1.5</source>
48 <target>1.5</target>
49 <encoding>UTF-8</encoding>
50 </configuration>
51 </plugin>
52 <plugin>
53 <artifactId>maven-deploy-plugin</artifactId>
54 <configuration>
55 <updateReleaseInfo>true</updateReleaseInfo>
56 </configuration>
57 </plugin>
58 <plugin>
59 <groupId>org.codehaus.mojo</groupId>
60 <artifactId>cobertura-maven-plugin</artifactId>
61 <version>2.0-SNAPSHOT</version>
62 <executions>
63 <execution>
64 <goals>
65 <goal>clean</goal>
66 </goals>
67 </execution>
68 </executions>
69 </plugin>
70 </plugins>
71 </pluginManagement>
72 <plugins>
73 <plugin>
74 <artifactId>maven-source-plugin</artifactId>
75 <executions>
76 <execution>
77 <id>source-jar</id>
78 <phase>package</phase>
79 <goals>
80 <goal>jar</goal>
81 </goals>
82 </execution>
83 </executions>
84 </plugin>
85 <!--
86 <plugin>
87 <artifactId>maven-javadoc-plugin</artifactId>
88 <executions>
89 <execution>
90 <id>javadoc-jar</id>
91 <phase>package</phase>
92 <goals>
93 <goal>jar</goal>
94 </goals>
95 </execution>
96 </executions>
97 <configuration>
98 <charset>UTF-8</charset>
99 </configuration>
100 </plugin>
101 -->
102 </plugins>
103 </build>
104 <repositories>
105 <repository>
106 <id>maven2.marevol.com</id>
107 <name>Maven2 Repository on marevol.com</name>
108 <url>http://maven2.marevol.com/</url>
109 </repository>
110 <repository>
111 <id>maven.marevol.com</id>
112 <name>Maven1 Repository on marevol.com</name>
113 <url>http://maven.marevol.com/</url>
114 <layout>legacy</layout>
115 </repository>
116 <repository>
117 <id>maven.seasar.org</id>
118 <name>The Seasar Foundation Maven2 Repository</name>
119 <url>http://maven.seasar.org/maven2</url>
120 </repository>
121 </repositories>
122 <dependencies>
123 <!-- SERVLET DEV: BEGIN @@@
124 <dependency>
125 <groupId>jp.sf.pal</groupId>
126 <artifactId>faces-dev-filter</artifactId>
127 <version>0.1</version>
128 <scope>compile</scope>
129 </dependency>
130 @@@@ SERVLET DEV: END -->
131 <dependency>
132 <groupId>javax.servlet</groupId>
133 <artifactId>servlet-api</artifactId>
134 <version>2.3</version>
135 <scope>provided</scope>
136 </dependency>
137 <dependency>
138 <groupId>portlet-api</groupId>
139 <artifactId>portlet-api</artifactId>
140 <version>1.0</version>
141 <scope>provided</scope>
142 </dependency>
143 <dependency>
144 <groupId>org.seasar.teeda</groupId>
145 <artifactId>teeda-core</artifactId>
146 <version>1.0.13</version>
147 </dependency>
148 <dependency>
149 <groupId>org.seasar.teeda</groupId>
150 <artifactId>teeda-extension</artifactId>
151 <version>1.0.13</version>
152 <exclusions>
153 <exclusion>
154 <groupId>org.seasar.teeda</groupId>
155 <artifactId>teeda-ajax</artifactId>
156 </exclusion>
157 </exclusions>
158 </dependency>
159 <dependency>
160 <groupId>org.seasar.teeda</groupId>
161 <artifactId>teeda-tiger</artifactId>
162 <version>1.0.13</version>
163 </dependency>
164 <dependency>
165 <groupId>org.apache.geronimo.specs</groupId>
166 <artifactId>geronimo-ejb_2.1_spec</artifactId>
167 <version>1.0</version>
168 </dependency>
169 <dependency>
170 <groupId>org.seasar.portlet</groupId>
171 <artifactId>s2-portlet</artifactId>
172 <version>1.0.7</version>
173 </dependency>
174 <dependency>
175 <groupId>org.apache.portals.bridges</groupId>
176 <artifactId>portals-bridges-portletfilter</artifactId>
177 <version>1.0.4</version>
178 <exclusions>
179 <exclusion>
180 <groupId>logkit</groupId>
181 <artifactId>logkit</artifactId>
182 </exclusion>
183 <exclusion>
184 <groupId>avalon-framework</groupId>
185 <artifactId>avalon-framework</artifactId>
186 </exclusion>
187 <exclusion>
188 <groupId>javax.servlet</groupId>
189 <artifactId>servlet-api</artifactId>
190 </exclusion>
191 <exclusion>
192 <groupId>log4j</groupId>
193 <artifactId>log4j</artifactId>
194 </exclusion>
195 </exclusions>
196 </dependency>
197 <dependency>
198 <groupId>jp.sf.pal</groupId>
199 <artifactId>faces-response-filter</artifactId>
200 <version>0.2</version>
201 </dependency>
202 <dependency>
203 <groupId>jp.sf.pal</groupId>
204 <artifactId>common-utils</artifactId>
205 <version>0.3</version>
206 </dependency>
207 <dependency>
208 <groupId>jp.sf.pal</groupId>
209 <artifactId>portlet-output-optimizer</artifactId>
210 <version>0.2</version>
211 </dependency>
212 <!--
213 <dependency>
214 <groupId>commons-fileupload</groupId>
215 <artifactId>commons-fileupload</artifactId>
216 <version>1.2</version>
217 </dependency>
218 <dependency>
219 <groupId>commons-io</groupId>
220 <artifactId>commons-io</artifactId>
221 <version>1.3.2</version>
222 </dependency>
223 -->
224 <dependency>
225 <groupId>commons-lang</groupId>
226 <artifactId>commons-lang</artifactId>
227 <version>2.4</version>
228 </dependency>
229 <!--
230 <dependency>
231 <groupId>log4j</groupId>
232 <artifactId>log4j</artifactId>
233 <version>1.2.14</version>
234 </dependency>
235 -->
236 <dependency>
237 <groupId>xerces</groupId>
238 <artifactId>xercesImpl</artifactId>
239 <version>2.6.2</version>
240 </dependency>
241 <dependency>
242 <groupId>xerces</groupId>
243 <artifactId>xmlParserAPIs</artifactId>
244 <version>2.6.2</version>
245 </dependency>
246 <!-- Jetspeed2 -->
247 <dependency>
248 <groupId>org.apache.portals.jetspeed-2</groupId>
249 <artifactId>jetspeed-api</artifactId>
250 <version>2.1.3_pal-1.0.3</version>
251 <!-- PORTLET DEV: BEGIN -->
252 <scope>provided</scope>
253 <!-- PORTLET DEV: END -->
254 </dependency>
255 <dependency>
256 <groupId>org.apache.portals.jetspeed-2</groupId>
257 <artifactId>jetspeed-locator</artifactId>
258 <version>2.1.3_pal-1.0.3</version>
259 </dependency>
260 <dependency>
261 <groupId>org.apache.pluto</groupId>
262 <artifactId>pluto</artifactId>
263 <version>1.0.1</version>
264 <!-- PORTLET DEV: BEGIN -->
265 <scope>provided</scope>
266 <!-- PORTLET DEV: END -->
267 </dependency>
268 <dependency>
269 <groupId>org.seasar.container</groupId>
270 <artifactId>s2-framework</artifactId>
271 <version>2.4.24</version>
272 </dependency>
273 <dependency>
274 <groupId>org.seasar.container</groupId>
275 <artifactId>s2-extension</artifactId>
276 <version>2.4.24</version>
277 <exclusions>
278 <exclusion>
279 <groupId>log4j</groupId>
280 <artifactId>log4j</artifactId>
281 </exclusion>
282 </exclusions>
283 </dependency>
284 <dependency>
285 <groupId>org.seasar.container</groupId>
286 <artifactId>s2-tiger</artifactId>
287 <version>2.4.24</version>
288 <exclusions>
289 <exclusion>
290 <groupId>org.easymock</groupId>
291 <artifactId>easymock</artifactId>
292 </exclusion>
293 </exclusions>
294 </dependency>
295 <dependency>
296 <groupId>junit</groupId>
297 <artifactId>junit</artifactId>
298 <version>3.8.1</version>
299 <scope>test</scope>
300 </dependency>
301 </dependencies>
302 <reporting>
303 <plugins>
304 <plugin>
305 <artifactId>maven-project-info-reports-plugin</artifactId>
306 </plugin>
307 <plugin>
308 <groupId>org.codehaus.mojo</groupId>
309 <artifactId>changelog-maven-plugin</artifactId>
310 </plugin>
311 <plugin>
312 <groupId>org.codehaus.mojo</groupId>
313 <artifactId>taglist-maven-plugin</artifactId>
314 <configuration>
315 <tags>
316 <tag>FIXME</tag>
317 <tag>TODO</tag>
318 <tag>XXX</tag>
319 </tags>
320 </configuration>
321 </plugin>
322 <plugin>
323 <groupId>org.codehaus.mojo</groupId>
324 <artifactId>cobertura-maven-plugin</artifactId>
325 <version>2.0-SNAPSHOT</version>
326 </plugin>
327 </plugins>
328 </reporting>
329 </project>

Properties

Name Value
svn:eol-style native

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