| 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>notepad</artifactId> |
| 6 |
<version>1.0-PR2</version> |
| 7 |
<packaging>war</packaging> |
| 8 |
<name>Notepad</name> |
| 9 |
<description/> |
| 10 |
<build> |
| 11 |
<finalName>notepad</finalName> |
| 12 |
<defaultGoal>validate</defaultGoal> |
| 13 |
<pluginManagement> |
| 14 |
<plugins> |
| 15 |
<plugin> |
| 16 |
<artifactId>maven-compiler-plugin</artifactId> |
| 17 |
<configuration> |
| 18 |
<source>1.5</source> |
| 19 |
<target>1.5</target> |
| 20 |
<encoding>UTF-8</encoding> |
| 21 |
</configuration> |
| 22 |
</plugin> |
| 23 |
<plugin> |
| 24 |
<artifactId>maven-surefire-plugin</artifactId> |
| 25 |
<version>2.3</version> |
| 26 |
</plugin> |
| 27 |
<plugin> |
| 28 |
<artifactId>maven-deploy-plugin</artifactId> |
| 29 |
<configuration> |
| 30 |
<updateReleaseInfo>true</updateReleaseInfo> |
| 31 |
</configuration> |
| 32 |
</plugin> |
| 33 |
<plugin> |
| 34 |
<groupId>org.codehaus.mojo</groupId> |
| 35 |
<artifactId>cobertura-maven-plugin</artifactId> |
| 36 |
<version>2.0-SNAPSHOT</version> |
| 37 |
<executions> |
| 38 |
<execution> |
| 39 |
<goals> |
| 40 |
<goal>clean</goal> |
| 41 |
</goals> |
| 42 |
</execution> |
| 43 |
</executions> |
| 44 |
</plugin> |
| 45 |
</plugins> |
| 46 |
</pluginManagement> |
| 47 |
<plugins> |
| 48 |
<plugin> |
| 49 |
<artifactId>maven-source-plugin</artifactId> |
| 50 |
<executions> |
| 51 |
<execution> |
| 52 |
<id>source-jar</id> |
| 53 |
<phase>package</phase> |
| 54 |
<goals> |
| 55 |
<goal>jar</goal> |
| 56 |
</goals> |
| 57 |
</execution> |
| 58 |
</executions> |
| 59 |
</plugin> |
| 60 |
</plugins> |
| 61 |
</build> |
| 62 |
<repositories> |
| 63 |
<repository> |
| 64 |
<id>maven.seasar.org</id> |
| 65 |
<name>The Seasar Foundation Maven2 Repository</name> |
| 66 |
<url>http://maven.seasar.org/maven2</url> |
| 67 |
</repository> |
| 68 |
</repositories> |
| 69 |
<dependencies> |
| 70 |
<dependency> |
| 71 |
<groupId>log4j</groupId> |
| 72 |
<artifactId>log4j</artifactId> |
| 73 |
<version>1.2.13</version> |
| 74 |
</dependency> |
| 75 |
<dependency> |
| 76 |
<groupId>com.h2database</groupId> |
| 77 |
<artifactId>h2</artifactId> |
| 78 |
<version>1.0.79</version> |
| 79 |
</dependency> |
| 80 |
<!-- |
| 81 |
<dependency> |
| 82 |
<groupId>mysql</groupId> |
| 83 |
<artifactId>mysql-connector-java</artifactId> |
| 84 |
<version>5.1.6</version> |
| 85 |
</dependency> |
| 86 |
--> |
| 87 |
<dependency> |
| 88 |
<groupId>javax.servlet</groupId> |
| 89 |
<artifactId>servlet-api</artifactId> |
| 90 |
<version>2.3</version> |
| 91 |
<scope>provided</scope> |
| 92 |
</dependency> |
| 93 |
<dependency> |
| 94 |
<groupId>portlet-api</groupId> |
| 95 |
<artifactId>portlet-api</artifactId> |
| 96 |
<version>1.0</version> |
| 97 |
<scope>provided</scope> |
| 98 |
</dependency> |
| 99 |
<dependency> |
| 100 |
<groupId>jstl</groupId> |
| 101 |
<artifactId>jstl</artifactId> |
| 102 |
<version>1.1.2</version> |
| 103 |
</dependency> |
| 104 |
<dependency> |
| 105 |
<groupId>taglibs</groupId> |
| 106 |
<artifactId>standard</artifactId> |
| 107 |
<version>1.1.2</version> |
| 108 |
</dependency> |
| 109 |
<dependency> |
| 110 |
<groupId>commons-collections</groupId> |
| 111 |
<artifactId>commons-collections</artifactId> |
| 112 |
<version>3.2</version> |
| 113 |
</dependency> |
| 114 |
<!-- |
| 115 |
<dependency> |
| 116 |
<groupId>commons-configuration</groupId> |
| 117 |
<artifactId>commons-configuration</artifactId> |
| 118 |
<version>1.5</version> |
| 119 |
</dependency> |
| 120 |
--> |
| 121 |
<dependency> |
| 122 |
<groupId>commons-el</groupId> |
| 123 |
<artifactId>commons-el</artifactId> |
| 124 |
<version>1.0</version> |
| 125 |
</dependency> |
| 126 |
<dependency> |
| 127 |
<groupId>commons-fileupload</groupId> |
| 128 |
<artifactId>commons-fileupload</artifactId> |
| 129 |
<version>1.2.1</version> |
| 130 |
</dependency> |
| 131 |
<dependency> |
| 132 |
<groupId>commons-io</groupId> |
| 133 |
<artifactId>commons-io</artifactId> |
| 134 |
<version>1.3</version> |
| 135 |
</dependency> |
| 136 |
<dependency> |
| 137 |
<groupId>commons-lang</groupId> |
| 138 |
<artifactId>commons-lang</artifactId> |
| 139 |
<version>2.3</version> |
| 140 |
</dependency> |
| 141 |
<dependency> |
| 142 |
<groupId>commons-validator</groupId> |
| 143 |
<artifactId>commons-validator</artifactId> |
| 144 |
<version>1.2.0</version> |
| 145 |
</dependency> |
| 146 |
<dependency> |
| 147 |
<groupId>commons-logging</groupId> |
| 148 |
<artifactId>commons-logging</artifactId> |
| 149 |
<version>1.0.4</version> |
| 150 |
</dependency> |
| 151 |
<!-- SAStruts --> |
| 152 |
<dependency> |
| 153 |
<groupId>org.seasar.container</groupId> |
| 154 |
<artifactId>s2-extension</artifactId> |
| 155 |
<version>2.4.33</version> |
| 156 |
</dependency> |
| 157 |
<dependency> |
| 158 |
<groupId>org.seasar.container</groupId> |
| 159 |
<artifactId>s2-tiger</artifactId> |
| 160 |
<version>2.4.33</version> |
| 161 |
</dependency> |
| 162 |
<dependency> |
| 163 |
<groupId>org.seasar.sastruts</groupId> |
| 164 |
<artifactId>sa-struts-portlet</artifactId> |
| 165 |
<version>1.0.0</version> |
| 166 |
</dependency> |
| 167 |
<dependency> |
| 168 |
<groupId>org.apache.geronimo.specs</groupId> |
| 169 |
<artifactId>geronimo-annotation_1.0_spec</artifactId> |
| 170 |
<version>1.1.1</version> |
| 171 |
</dependency> |
| 172 |
<dependency> |
| 173 |
<groupId>org.apache.geronimo.specs</groupId> |
| 174 |
<artifactId>geronimo-ejb_3.0_spec</artifactId> |
| 175 |
<version>1.0</version> |
| 176 |
</dependency> |
| 177 |
<dependency> |
| 178 |
<groupId>org.apache.geronimo.specs</groupId> |
| 179 |
<artifactId>geronimo-interceptor_3.0_spec</artifactId> |
| 180 |
<version>1.0</version> |
| 181 |
</dependency> |
| 182 |
<dependency> |
| 183 |
<groupId>org.apache.geronimo.specs</groupId> |
| 184 |
<artifactId>geronimo-jta_1.1_spec</artifactId> |
| 185 |
<version>1.0</version> |
| 186 |
</dependency> |
| 187 |
<!-- DB --> |
| 188 |
<dependency> |
| 189 |
<groupId>org.seasar.dao</groupId> |
| 190 |
<artifactId>s2-dao</artifactId> |
| 191 |
<version>1.0.48</version> |
| 192 |
</dependency> |
| 193 |
<dependency> |
| 194 |
<groupId>org.seasar.dao</groupId> |
| 195 |
<artifactId>s2-dao-tiger</artifactId> |
| 196 |
<version>1.0.48</version> |
| 197 |
</dependency> |
| 198 |
<!-- Removed from war --> |
| 199 |
<dependency> |
| 200 |
<!-- needed by validator(validwhen) --> |
| 201 |
<groupId>antlr</groupId> |
| 202 |
<artifactId>antlr</artifactId> |
| 203 |
<version>2.7.7</version> |
| 204 |
<scope>provided</scope> |
| 205 |
</dependency> |
| 206 |
<dependency> |
| 207 |
<groupId>junit</groupId> |
| 208 |
<artifactId>junit</artifactId> |
| 209 |
<version>3.8.2</version> |
| 210 |
<scope>test</scope> |
| 211 |
</dependency> |
| 212 |
<dependency> |
| 213 |
<groupId>org.easymock</groupId> |
| 214 |
<artifactId>easymock</artifactId> |
| 215 |
<version>2.2</version> |
| 216 |
<scope>test</scope> |
| 217 |
</dependency> |
| 218 |
<dependency> |
| 219 |
<groupId>xalan</groupId> |
| 220 |
<artifactId>xalan</artifactId> |
| 221 |
<version>2.5.1</version> |
| 222 |
<scope>provided</scope> |
| 223 |
</dependency> |
| 224 |
<dependency> |
| 225 |
<groupId>xml-apis</groupId> |
| 226 |
<artifactId>xml-apis</artifactId> |
| 227 |
<version>2.0.2</version> |
| 228 |
<scope>provided</scope> |
| 229 |
</dependency> |
| 230 |
</dependencies> |
| 231 |
</project> |