| 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</artifactId> |
| 6 |
<version>1.3-SNAPSHOT</version> |
| 7 |
<packaging>war</packaging> |
| 8 |
<name>Administration 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/trunk/</connection> |
| 32 |
<developerConnection>scm:svn:svn+ssh://${username}@svn.sourceforge.jp/svnroot/pal/pal-admin/trunk/</developerConnection> |
| 33 |
<url>http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi/pal-admin/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</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.pal.sf.jp</id> |
| 107 |
<name>Maven2 Repository on pal.sf.jp</name> |
| 108 |
<url>http://pal.sourceforge.jp/maven2</url> |
| 109 |
</repository> |
| 110 |
<repository> |
| 111 |
<id>maven.pal.sf.jp</id> |
| 112 |
<name>Maven1 Repository on pal.sf.jp</name> |
| 113 |
<url>http://pal.sourceforge.jp/maven</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-extension</artifactId> |
| 146 |
<version>1.0.13-sp7</version> |
| 147 |
<exclusions> |
| 148 |
<exclusion> |
| 149 |
<groupId>org.seasar.teeda</groupId> |
| 150 |
<artifactId>teeda-ajax</artifactId> |
| 151 |
</exclusion> |
| 152 |
</exclusions> |
| 153 |
</dependency> |
| 154 |
<dependency> |
| 155 |
<groupId>org.seasar.teeda</groupId> |
| 156 |
<artifactId>teeda-tiger</artifactId> |
| 157 |
<version>1.0.13</version> |
| 158 |
</dependency> |
| 159 |
<dependency> |
| 160 |
<groupId>org.apache.geronimo.specs</groupId> |
| 161 |
<artifactId>geronimo-ejb_2.1_spec</artifactId> |
| 162 |
<version>1.0</version> |
| 163 |
</dependency> |
| 164 |
<dependency> |
| 165 |
<groupId>org.seasar.portlet</groupId> |
| 166 |
<artifactId>s2-portlet</artifactId> |
| 167 |
<version>1.0.7</version> |
| 168 |
</dependency> |
| 169 |
<dependency> |
| 170 |
<groupId>org.apache.portals.bridges</groupId> |
| 171 |
<artifactId>portals-bridges-portletfilter</artifactId> |
| 172 |
<version>1.0.4</version> |
| 173 |
<exclusions> |
| 174 |
<exclusion> |
| 175 |
<groupId>logkit</groupId> |
| 176 |
<artifactId>logkit</artifactId> |
| 177 |
</exclusion> |
| 178 |
<exclusion> |
| 179 |
<groupId>avalon-framework</groupId> |
| 180 |
<artifactId>avalon-framework</artifactId> |
| 181 |
</exclusion> |
| 182 |
<exclusion> |
| 183 |
<groupId>javax.servlet</groupId> |
| 184 |
<artifactId>servlet-api</artifactId> |
| 185 |
</exclusion> |
| 186 |
<exclusion> |
| 187 |
<groupId>log4j</groupId> |
| 188 |
<artifactId>log4j</artifactId> |
| 189 |
</exclusion> |
| 190 |
</exclusions> |
| 191 |
</dependency> |
| 192 |
<dependency> |
| 193 |
<groupId>jp.sf.pal</groupId> |
| 194 |
<artifactId>faces-response-filter</artifactId> |
| 195 |
<version>0.2</version> |
| 196 |
</dependency> |
| 197 |
<dependency> |
| 198 |
<groupId>jp.sf.pal</groupId> |
| 199 |
<artifactId>common-utils</artifactId> |
| 200 |
<version>0.3</version> |
| 201 |
</dependency> |
| 202 |
<dependency> |
| 203 |
<groupId>jp.sf.pal</groupId> |
| 204 |
<artifactId>portlet-output-optimizer</artifactId> |
| 205 |
<version>0.2</version> |
| 206 |
</dependency> |
| 207 |
<dependency> |
| 208 |
<groupId>commons-fileupload</groupId> |
| 209 |
<artifactId>commons-fileupload</artifactId> |
| 210 |
<version>1.2</version> |
| 211 |
</dependency> |
| 212 |
<dependency> |
| 213 |
<groupId>commons-io</groupId> |
| 214 |
<artifactId>commons-io</artifactId> |
| 215 |
<version>1.3.2</version> |
| 216 |
</dependency> |
| 217 |
<dependency> |
| 218 |
<groupId>commons-lang</groupId> |
| 219 |
<artifactId>commons-lang</artifactId> |
| 220 |
<version>2.3</version> |
| 221 |
</dependency> |
| 222 |
<!-- |
| 223 |
<dependency> |
| 224 |
<groupId>log4j</groupId> |
| 225 |
<artifactId>log4j</artifactId> |
| 226 |
<version>1.2.14</version> |
| 227 |
</dependency> |
| 228 |
--> |
| 229 |
<dependency> |
| 230 |
<groupId>xerces</groupId> |
| 231 |
<artifactId>xercesImpl</artifactId> |
| 232 |
<version>2.6.2</version> |
| 233 |
</dependency> |
| 234 |
<dependency> |
| 235 |
<groupId>xerces</groupId> |
| 236 |
<artifactId>xmlParserAPIs</artifactId> |
| 237 |
<version>2.6.2</version> |
| 238 |
</dependency> |
| 239 |
<!-- Jetspeed2 --> |
| 240 |
<dependency> |
| 241 |
<groupId>org.apache.portals.jetspeed-2</groupId> |
| 242 |
<artifactId>jetspeed-api</artifactId> |
| 243 |
<version>2.1.3_pal-1.2.0-dev</version> |
| 244 |
<!-- PORTLET DEV: BEGIN --> |
| 245 |
<scope>provided</scope> |
| 246 |
<!-- PORTLET DEV: END --> |
| 247 |
</dependency> |
| 248 |
<dependency> |
| 249 |
<groupId>org.apache.portals.jetspeed-2</groupId> |
| 250 |
<artifactId>jetspeed-locator</artifactId> |
| 251 |
<version>2.1.3_pal-1.2.0-dev</version> |
| 252 |
</dependency> |
| 253 |
<dependency> |
| 254 |
<groupId>org.apache.pluto</groupId> |
| 255 |
<artifactId>pluto</artifactId> |
| 256 |
<version>1.0.1</version> |
| 257 |
<!-- PORTLET DEV: BEGIN --> |
| 258 |
<scope>provided</scope> |
| 259 |
<!-- PORTLET DEV: END --> |
| 260 |
</dependency> |
| 261 |
<dependency> |
| 262 |
<groupId>org.seasar.container</groupId> |
| 263 |
<artifactId>s2-framework</artifactId> |
| 264 |
<version>2.4.24</version> |
| 265 |
</dependency> |
| 266 |
<dependency> |
| 267 |
<groupId>org.seasar.container</groupId> |
| 268 |
<artifactId>s2-extension</artifactId> |
| 269 |
<version>2.4.24</version> |
| 270 |
<exclusions> |
| 271 |
<exclusion> |
| 272 |
<groupId>log4j</groupId> |
| 273 |
<artifactId>log4j</artifactId> |
| 274 |
</exclusion> |
| 275 |
</exclusions> |
| 276 |
</dependency> |
| 277 |
<dependency> |
| 278 |
<groupId>org.seasar.container</groupId> |
| 279 |
<artifactId>s2-tiger</artifactId> |
| 280 |
<version>2.4.24</version> |
| 281 |
<exclusions> |
| 282 |
<exclusion> |
| 283 |
<groupId>org.easymock</groupId> |
| 284 |
<artifactId>easymock</artifactId> |
| 285 |
</exclusion> |
| 286 |
</exclusions> |
| 287 |
</dependency> |
| 288 |
<dependency> |
| 289 |
<groupId>junit</groupId> |
| 290 |
<artifactId>junit</artifactId> |
| 291 |
<version>3.8.1</version> |
| 292 |
<scope>test</scope> |
| 293 |
</dependency> |
| 294 |
</dependencies> |
| 295 |
<reporting> |
| 296 |
<plugins> |
| 297 |
<plugin> |
| 298 |
<artifactId>maven-project-info-reports-plugin</artifactId> |
| 299 |
</plugin> |
| 300 |
<plugin> |
| 301 |
<groupId>org.codehaus.mojo</groupId> |
| 302 |
<artifactId>changelog-maven-plugin</artifactId> |
| 303 |
</plugin> |
| 304 |
<plugin> |
| 305 |
<groupId>org.codehaus.mojo</groupId> |
| 306 |
<artifactId>taglist-maven-plugin</artifactId> |
| 307 |
<configuration> |
| 308 |
<tags> |
| 309 |
<tag>FIXME</tag> |
| 310 |
<tag>TODO</tag> |
| 311 |
<tag>XXX</tag> |
| 312 |
</tags> |
| 313 |
</configuration> |
| 314 |
</plugin> |
| 315 |
<plugin> |
| 316 |
<groupId>org.codehaus.mojo</groupId> |
| 317 |
<artifactId>cobertura-maven-plugin</artifactId> |
| 318 |
<version>2.0-SNAPSHOT</version> |
| 319 |
</plugin> |
| 320 |
</plugins> |
| 321 |
</reporting> |
| 322 |
</project> |