| 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>wiki</artifactId> |
| 6 |
<version>0.3-SNAPSHOT</version> |
| 7 |
<packaging>war</packaging> |
| 8 |
<name>Wiki Portlet Using Teeda</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:cvs:pserver:anonymous@cvs.sourceforge.jp:/cvsroot/pal:wiki</connection> |
| 32 |
<developerConnection>scm:cvs:pserver:anonymous@cvs.sourceforge.jp:/cvsroot/pal:wiki</developerConnection> |
| 33 |
<url>http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/pal/wiki</url> |
| 34 |
</scm> |
| 35 |
<organization> |
| 36 |
<name>Portal Application Laboratory</name> |
| 37 |
<url>http://pal.sourceforge.jp/</url> |
| 38 |
</organization> |
| 39 |
<build> |
| 40 |
<finalName>wiki</finalName> |
| 41 |
<defaultGoal>validate</defaultGoal> |
| 42 |
<pluginManagement> |
| 43 |
<plugins> |
| 44 |
<plugin> |
| 45 |
<artifactId>maven-compiler-plugin</artifactId> |
| 46 |
<configuration> |
| 47 |
<source>1.4</source> |
| 48 |
<target>1.4</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 |
<!-- |
| 59 |
<plugin> |
| 60 |
<artifactId>maven-site-plugin</artifactId> |
| 61 |
<configuration> |
| 62 |
<outputEncodinf>UTF-8</outputEncodinf> |
| 63 |
</configuration> |
| 64 |
</plugin> |
| 65 |
<plugin> |
| 66 |
<artifactId>maven-surefire-plugin</artifactId> |
| 67 |
<configuration> |
| 68 |
<forkMode>none</forkMode> |
| 69 |
</configuration> |
| 70 |
</plugin> |
| 71 |
--> |
| 72 |
<plugin> |
| 73 |
<groupId>org.codehaus.mojo</groupId> |
| 74 |
<artifactId>cobertura-maven-plugin</artifactId> |
| 75 |
<version>2.0-SNAPSHOT</version> |
| 76 |
<executions> |
| 77 |
<execution> |
| 78 |
<goals> |
| 79 |
<goal>clean</goal> |
| 80 |
</goals> |
| 81 |
</execution> |
| 82 |
</executions> |
| 83 |
</plugin> |
| 84 |
</plugins> |
| 85 |
</pluginManagement> |
| 86 |
<plugins> |
| 87 |
<plugin> |
| 88 |
<artifactId>maven-source-plugin</artifactId> |
| 89 |
<executions> |
| 90 |
<execution> |
| 91 |
<id>source-jar</id> |
| 92 |
<phase>package</phase> |
| 93 |
<goals> |
| 94 |
<goal>jar</goal> |
| 95 |
</goals> |
| 96 |
</execution> |
| 97 |
</executions> |
| 98 |
</plugin> |
| 99 |
<!-- |
| 100 |
<plugin> |
| 101 |
<artifactId>maven-javadoc-plugin</artifactId> |
| 102 |
<executions> |
| 103 |
<execution> |
| 104 |
<id>javadoc-jar</id> |
| 105 |
<phase>package</phase> |
| 106 |
<goals> |
| 107 |
<goal>jar</goal> |
| 108 |
</goals> |
| 109 |
</execution> |
| 110 |
</executions> |
| 111 |
<configuration> |
| 112 |
<charset>UTF-8</charset> |
| 113 |
</configuration> |
| 114 |
</plugin> |
| 115 |
--> |
| 116 |
</plugins> |
| 117 |
</build> |
| 118 |
<repositories> |
| 119 |
<repository> |
| 120 |
<id>maven.marevol.com</id> |
| 121 |
<name>Maven2 Repository on marevol.com</name> |
| 122 |
<url>http://maven2.marevol.com/</url> |
| 123 |
</repository> |
| 124 |
<repository> |
| 125 |
<id>maven.seasar.org</id> |
| 126 |
<name>The Seasar Foundation Maven2 Repository</name> |
| 127 |
<url>http://maven.seasar.org/maven2</url> |
| 128 |
</repository> |
| 129 |
</repositories> |
| 130 |
<dependencies> |
| 131 |
<!-- SERVLET DEV: BEGIN @@@ |
| 132 |
<dependency> |
| 133 |
<groupId>jp.sf.pal</groupId> |
| 134 |
<artifactId>faces-dev-filter</artifactId> |
| 135 |
<version>0.1</version> |
| 136 |
<scope>compile</scope> |
| 137 |
</dependency> |
| 138 |
@@@@ SERVLET DEV: END --> |
| 139 |
<dependency> |
| 140 |
<groupId>jp.sf.pal</groupId> |
| 141 |
<artifactId>faces-utils</artifactId> |
| 142 |
<version>0.3.1</version> |
| 143 |
</dependency> |
| 144 |
<dependency> |
| 145 |
<groupId>jp.sf.streamconverter</groupId> |
| 146 |
<artifactId>streamconverter-framework</artifactId> |
| 147 |
<version>0.2</version> |
| 148 |
</dependency> |
| 149 |
<dependency> |
| 150 |
<groupId>jp.sf.streamconverter</groupId> |
| 151 |
<artifactId>streamconverter-wiki</artifactId> |
| 152 |
<version>0.2.1</version> |
| 153 |
</dependency> |
| 154 |
<dependency> |
| 155 |
<groupId>xerces</groupId> |
| 156 |
<artifactId>xercesImpl</artifactId> |
| 157 |
<version>2.8.1</version> |
| 158 |
</dependency> |
| 159 |
<dependency> |
| 160 |
<groupId>junit</groupId> |
| 161 |
<artifactId>junit</artifactId> |
| 162 |
<version>3.8.1</version> |
| 163 |
<scope>test</scope> |
| 164 |
</dependency> |
| 165 |
<dependency> |
| 166 |
<groupId>javax.servlet</groupId> |
| 167 |
<artifactId>servlet-api</artifactId> |
| 168 |
<version>2.3</version> |
| 169 |
<scope>provided</scope> |
| 170 |
</dependency> |
| 171 |
<dependency> |
| 172 |
<groupId>portlet-api</groupId> |
| 173 |
<artifactId>portlet-api</artifactId> |
| 174 |
<version>1.0</version> |
| 175 |
<scope>provided</scope> |
| 176 |
</dependency> |
| 177 |
<dependency> |
| 178 |
<groupId>org.seasar.teeda</groupId> |
| 179 |
<artifactId>teeda-core</artifactId> |
| 180 |
<version>1.0.8</version> |
| 181 |
</dependency> |
| 182 |
<dependency> |
| 183 |
<groupId>org.seasar.teeda</groupId> |
| 184 |
<artifactId>teeda-extension</artifactId> |
| 185 |
<version>1.0.8</version> |
| 186 |
</dependency> |
| 187 |
<dependency> |
| 188 |
<groupId>org.seasar.portlet</groupId> |
| 189 |
<artifactId>s2-portlet</artifactId> |
| 190 |
<version>1.0.7</version> |
| 191 |
</dependency> |
| 192 |
<dependency> |
| 193 |
<groupId>org.apache.portals.bridges</groupId> |
| 194 |
<artifactId>portals-bridges-portletfilter</artifactId> |
| 195 |
<version>1.0.3</version> |
| 196 |
<exclusions> |
| 197 |
<exclusion> |
| 198 |
<groupId>logkit</groupId> |
| 199 |
<artifactId>logkit</artifactId> |
| 200 |
</exclusion> |
| 201 |
<exclusion> |
| 202 |
<groupId>avalon-framework</groupId> |
| 203 |
<artifactId>avalon-framework</artifactId> |
| 204 |
</exclusion> |
| 205 |
<exclusion> |
| 206 |
<groupId>javax.servlet</groupId> |
| 207 |
<artifactId>servlet-api</artifactId> |
| 208 |
</exclusion> |
| 209 |
<exclusion> |
| 210 |
<groupId>log4j</groupId> |
| 211 |
<artifactId>log4j</artifactId> |
| 212 |
</exclusion> |
| 213 |
</exclusions> |
| 214 |
</dependency> |
| 215 |
<dependency> |
| 216 |
<groupId>jp.sf.pal</groupId> |
| 217 |
<artifactId>faces-response-filter</artifactId> |
| 218 |
<version>0.2</version> |
| 219 |
</dependency> |
| 220 |
<dependency> |
| 221 |
<groupId>jp.sf.pal</groupId> |
| 222 |
<artifactId>portlet-output-optimizer</artifactId> |
| 223 |
<version>0.2</version> |
| 224 |
</dependency> |
| 225 |
<dependency> |
| 226 |
<groupId>log4j</groupId> |
| 227 |
<artifactId>log4j</artifactId> |
| 228 |
<version>1.2.9</version> |
| 229 |
</dependency> |
| 230 |
</dependencies> |
| 231 |
<reporting> |
| 232 |
<plugins> |
| 233 |
<plugin> |
| 234 |
<artifactId>maven-project-info-reports-plugin</artifactId> |
| 235 |
</plugin> |
| 236 |
<!-- |
| 237 |
<plugin> |
| 238 |
<groupId>org.codehaus.mojo</groupId> |
| 239 |
<artifactId>surefire-report-maven-plugin</artifactId> |
| 240 |
</plugin> |
| 241 |
--> |
| 242 |
<plugin> |
| 243 |
<groupId>org.codehaus.mojo</groupId> |
| 244 |
<artifactId>changelog-maven-plugin</artifactId> |
| 245 |
</plugin> |
| 246 |
<plugin> |
| 247 |
<groupId>org.codehaus.mojo</groupId> |
| 248 |
<artifactId>taglist-maven-plugin</artifactId> |
| 249 |
<configuration> |
| 250 |
<tags> |
| 251 |
<tag>FIXME</tag> |
| 252 |
<tag>TODO</tag> |
| 253 |
<tag>XXX</tag> |
| 254 |
</tags> |
| 255 |
</configuration> |
| 256 |
</plugin> |
| 257 |
<plugin> |
| 258 |
<groupId>org.codehaus.mojo</groupId> |
| 259 |
<artifactId>cobertura-maven-plugin</artifactId> |
| 260 |
<version>2.0-SNAPSHOT</version> |
| 261 |
<!-- |
| 262 |
<configuration> |
| 263 |
<outputDirectory>${project.build.directory}/site/cobertura</outputDirectory> |
| 264 |
</configuration> |
| 265 |
--> |
| 266 |
</plugin> |
| 267 |
<!-- |
| 268 |
<plugin> |
| 269 |
<artifactId>maven-javadoc-plugin</artifactId> |
| 270 |
</plugin> |
| 271 |
<plugin> |
| 272 |
<artifactId>maven-clover-plugin</artifactId> |
| 273 |
</plugin> |
| 274 |
<plugin> |
| 275 |
<artifactId>maven-pmd-plugin</artifactId> |
| 276 |
</plugin> |
| 277 |
<plugin> |
| 278 |
<artifactId>maven-checkstyle-plugin</artifactId> |
| 279 |
</plugin> |
| 280 |
--> |
| 281 |
</plugins> |
| 282 |
</reporting> |
| 283 |
</project> |