| 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>s2helloworld</artifactId> |
| 6 |
<version>1.2-SNAPSHOT</version> |
| 7 |
<packaging>war</packaging> |
| 8 |
<name>Helloworld Portlet Using Teeda</name> |
| 9 |
<description/> |
| 10 |
<url>http://pal.sourceforge.jp/</url> |
| 11 |
<build> |
| 12 |
<finalName>s2helloworld</finalName> |
| 13 |
</build> |
| 14 |
<repositories> |
| 15 |
<repository> |
| 16 |
<id>maven.marevol.com</id> |
| 17 |
<name>Maven2 Repository on marevol.com</name> |
| 18 |
<url>http://maven2.marevol.com/</url> |
| 19 |
</repository> |
| 20 |
<repository> |
| 21 |
<id>maven.seasar.org</id> |
| 22 |
<name>The Seasar Foundation Maven2 Repository</name> |
| 23 |
<url>http://maven.seasar.org/maven2</url> |
| 24 |
</repository> |
| 25 |
</repositories> |
| 26 |
<dependencies> |
| 27 |
<!-- SERVLET DEV: BEGIN @@@ |
| 28 |
<dependency> |
| 29 |
<groupId>jp.sf.pal</groupId> |
| 30 |
<artifactId>faces-dev-filter</artifactId> |
| 31 |
<version>0.1</version> |
| 32 |
<scope>compile</scope> |
| 33 |
</dependency> |
| 34 |
@@@@ SERVLET DEV: END --> |
| 35 |
<dependency> |
| 36 |
<groupId>javax.servlet</groupId> |
| 37 |
<artifactId>servlet-api</artifactId> |
| 38 |
<version>2.3</version> |
| 39 |
<scope>provided</scope> |
| 40 |
</dependency> |
| 41 |
<dependency> |
| 42 |
<groupId>portlet-api</groupId> |
| 43 |
<artifactId>portlet-api</artifactId> |
| 44 |
<version>1.0</version> |
| 45 |
<scope>provided</scope> |
| 46 |
</dependency> |
| 47 |
<dependency> |
| 48 |
<groupId>org.seasar.container</groupId> |
| 49 |
<artifactId>s2-framework</artifactId> |
| 50 |
<version>2.4.17</version> |
| 51 |
</dependency> |
| 52 |
<dependency> |
| 53 |
<groupId>org.seasar.container</groupId> |
| 54 |
<artifactId>s2-extension</artifactId> |
| 55 |
<version>2.4.17</version> |
| 56 |
<exclusions> |
| 57 |
<exclusion> |
| 58 |
<groupId>log4j</groupId> |
| 59 |
<artifactId>log4j</artifactId> |
| 60 |
</exclusion> |
| 61 |
</exclusions> |
| 62 |
</dependency> |
| 63 |
<dependency> |
| 64 |
<groupId>org.seasar.container</groupId> |
| 65 |
<artifactId>s2-tiger</artifactId> |
| 66 |
<version>2.4.17</version> |
| 67 |
<exclusions> |
| 68 |
<exclusion> |
| 69 |
<groupId>org.easymock</groupId> |
| 70 |
<artifactId>easymock</artifactId> |
| 71 |
</exclusion> |
| 72 |
</exclusions> |
| 73 |
</dependency> |
| 74 |
<dependency> |
| 75 |
<groupId>org.seasar.teeda</groupId> |
| 76 |
<artifactId>teeda-extension</artifactId> |
| 77 |
<version>1.0.12-EA1-SNAPSHOT</version> |
| 78 |
</dependency> |
| 79 |
<dependency> |
| 80 |
<groupId>org.seasar.teeda</groupId> |
| 81 |
<artifactId>teeda-tiger</artifactId> |
| 82 |
<version>1.0.11-RC2</version> |
| 83 |
</dependency> |
| 84 |
<dependency> |
| 85 |
<groupId>org.seasar.portlet</groupId> |
| 86 |
<artifactId>s2-portlet</artifactId> |
| 87 |
<version>1.0.7</version> |
| 88 |
</dependency> |
| 89 |
<dependency> |
| 90 |
<groupId>org.apache.portals.bridges</groupId> |
| 91 |
<artifactId>portals-bridges-portletfilter</artifactId> |
| 92 |
<version>1.0.3</version> |
| 93 |
<exclusions> |
| 94 |
<exclusion> |
| 95 |
<groupId>logkit</groupId> |
| 96 |
<artifactId>logkit</artifactId> |
| 97 |
</exclusion> |
| 98 |
<exclusion> |
| 99 |
<groupId>avalon-framework</groupId> |
| 100 |
<artifactId>avalon-framework</artifactId> |
| 101 |
</exclusion> |
| 102 |
<exclusion> |
| 103 |
<groupId>javax.servlet</groupId> |
| 104 |
<artifactId>servlet-api</artifactId> |
| 105 |
</exclusion> |
| 106 |
<exclusion> |
| 107 |
<groupId>log4j</groupId> |
| 108 |
<artifactId>log4j</artifactId> |
| 109 |
</exclusion> |
| 110 |
</exclusions> |
| 111 |
</dependency> |
| 112 |
<dependency> |
| 113 |
<groupId>jp.sf.pal</groupId> |
| 114 |
<artifactId>faces-response-filter</artifactId> |
| 115 |
<version>0.2</version> |
| 116 |
</dependency> |
| 117 |
<dependency> |
| 118 |
<groupId>jp.sf.pal</groupId> |
| 119 |
<artifactId>portlet-output-optimizer</artifactId> |
| 120 |
<version>0.2</version> |
| 121 |
</dependency> |
| 122 |
<!-- |
| 123 |
<dependency> |
| 124 |
<groupId>log4j</groupId> |
| 125 |
<artifactId>log4j</artifactId> |
| 126 |
<version>1.2.13</version> |
| 127 |
</dependency> |
| 128 |
--> |
| 129 |
<dependency> |
| 130 |
<groupId>xerces</groupId> |
| 131 |
<artifactId>xercesImpl</artifactId> |
| 132 |
<version>2.6.2</version> |
| 133 |
</dependency> |
| 134 |
<dependency> |
| 135 |
<groupId>xerces</groupId> |
| 136 |
<artifactId>xmlParserAPIs</artifactId> |
| 137 |
<version>2.6.2</version> |
| 138 |
</dependency> |
| 139 |
</dependencies> |
| 140 |
</project> |