[cubby]/branches/2.0.x/cubby-apps/cubby-showcase/pom.xml
Parent Directory
|
Revision Log
Revision 2056 -
(hide annotations)
Thu Nov 19 22:08:42 2009 JST (3 years, 6 months ago) by baba
File MIME type: text/xml
File size: 11178 byte(s)
Thu Nov 19 22:08:42 2009 JST (3 years, 6 months ago) by baba
File MIME type: text/xml
File size: 11178 byte(s)
[maven-release-plugin] prepare release cubby-apps-2.0.4
| 1 | baba | 982 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | baba | 1662 | <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 | baba | 1660 | <parent> |
| 4 | <artifactId>cubby-apps</artifactId> | ||
| 5 | <groupId>org.seasar.cubby</groupId> | ||
| 6 | baba | 2056 | <version>2.0.4</version> |
| 7 | baba | 1660 | </parent> |
| 8 | baba | 982 | <modelVersion>4.0.0</modelVersion> |
| 9 | <groupId>org.seasar.cubby</groupId> | ||
| 10 | baba | 1909 | <artifactId>cubby-showcase</artifactId> |
| 11 | baba | 982 | <packaging>war</packaging> |
| 12 | baba | 1909 | <name>Cubby Showcase</name> |
| 13 | baba | 982 | <build> |
| 14 | baba | 1909 | <finalName>cubby-showcase</finalName> |
| 15 | baba | 1535 | <plugins> |
| 16 | baba | 981 | <plugin> |
| 17 | <artifactId>maven-compiler-plugin</artifactId> | ||
| 18 | <configuration> | ||
| 19 | <source>1.5</source> | ||
| 20 | <target>1.5</target> | ||
| 21 | <encoding>UTF-8</encoding> | ||
| 22 | </configuration> | ||
| 23 | </plugin> | ||
| 24 | <plugin> | ||
| 25 | <artifactId>maven-war-plugin</artifactId> | ||
| 26 | <configuration> | ||
| 27 | <webResources> | ||
| 28 | baba | 1542 | <webResource> |
| 29 | baba | 981 | <directory>src</directory> |
| 30 | <targetPath>WEB-INF/src</targetPath> | ||
| 31 | baba | 1542 | </webResource> |
| 32 | baba | 981 | </webResources> |
| 33 | </configuration> | ||
| 34 | </plugin> | ||
| 35 | baba | 982 | <plugin> |
| 36 | <artifactId>maven-eclipse-plugin</artifactId> | ||
| 37 | <configuration> | ||
| 38 | <wtpversion>2.0</wtpversion> | ||
| 39 | baba | 1535 | <downloadSources>true</downloadSources> |
| 40 | <downloadJavadocs>true</downloadJavadocs> | ||
| 41 | baba | 975 | <additionalConfig> |
| 42 | <file> | ||
| 43 | <name>.settings/org.eclipse.core.resources.prefs</name> | ||
| 44 | <content> | ||
| 45 | <![CDATA[ | ||
| 46 | eclipse.preferences.version=1 | ||
| 47 | encoding/<project>=UTF-8 | ||
| 48 | ]]> | ||
| 49 | </content> | ||
| 50 | </file> | ||
| 51 | <file> | ||
| 52 | <name>.settings/org.eclipse.core.runtime.prefs</name> | ||
| 53 | <content> | ||
| 54 | <![CDATA[ | ||
| 55 | eclipse.preferences.version=1 | ||
| 56 | line.separator=\n | ||
| 57 | ]]> | ||
| 58 | </content> | ||
| 59 | </file> | ||
| 60 | </additionalConfig> | ||
| 61 | baba | 982 | </configuration> |
| 62 | </plugin> | ||
| 63 | <plugin> | ||
| 64 | baba | 1535 | <groupId>org.codehaus.mojo</groupId> |
| 65 | baba | 1660 | <artifactId>selenium-maven-plugin</artifactId> |
| 66 | <configuration> | ||
| 67 | <background>true</background> | ||
| 68 | <suite>src/test/selenium/00_cubby_test_suite.html</suite> | ||
| 69 | <startURL>http://localhost:8080</startURL> | ||
| 70 | <multiWindow>true</multiWindow> | ||
| 71 | </configuration> | ||
| 72 | </plugin> | ||
| 73 | <plugin> | ||
| 74 | <groupId>org.codehaus.mojo</groupId> | ||
| 75 | baba | 1535 | <artifactId>tomcat-maven-plugin</artifactId> |
| 76 | </plugin> | ||
| 77 | <plugin> | ||
| 78 | baba | 1505 | <groupId>org.mortbay.jetty</groupId> |
| 79 | <artifactId>maven-jetty-plugin</artifactId> | ||
| 80 | </plugin> | ||
| 81 | baba | 982 | </plugins> |
| 82 | </build> | ||
| 83 | <repositories> | ||
| 84 | agata | 804 | <repository> |
| 85 | baba | 982 | <id>maven.seasar.org</id> |
| 86 | <name>The Seasar Foundation Maven2 Repository</name> | ||
| 87 | <url>http://maven.seasar.org/maven2</url> | ||
| 88 | </repository> | ||
| 89 | <repository> | ||
| 90 | <id>maven-snapshot.seasar.org</id> | ||
| 91 | <name>The Seasar Foundation Maven2 Snapshot Repository</name> | ||
| 92 | <url>http://maven.seasar.org/maven2-snapshot</url> | ||
| 93 | </repository> | ||
| 94 | <repository> | ||
| 95 | agata | 804 | <id>apache.incubating</id> |
| 96 | <name>Apache Incubating Repository</name> | ||
| 97 | <url>http://people.apache.org/repo/m2-incubating-repository/</url> | ||
| 98 | </repository> | ||
| 99 | baba | 982 | </repositories> |
| 100 | <dependencies> | ||
| 101 | agata | 798 | <dependency> |
| 102 | baba | 982 | <groupId>junit</groupId> |
| 103 | <artifactId>junit</artifactId> | ||
| 104 | baba | 1798 | <version>4.6</version> |
| 105 | baba | 982 | <scope>test</scope> |
| 106 | </dependency> | ||
| 107 | <dependency> | ||
| 108 | <groupId>javax.servlet</groupId> | ||
| 109 | <artifactId>jstl</artifactId> | ||
| 110 | baba | 1406 | <version>1.2</version> |
| 111 | baba | 982 | </dependency> |
| 112 | <dependency> | ||
| 113 | <groupId>org.seasar.cubby</groupId> | ||
| 114 | baba | 1293 | <artifactId>cubby-s2</artifactId> |
| 115 | baba | 2055 | <version>2.0.4</version> |
| 116 | baba | 982 | </dependency> |
| 117 | <dependency> | ||
| 118 | baba | 1047 | <groupId>org.seasar.cubby</groupId> |
| 119 | baba | 1423 | <artifactId>cubby-gson</artifactId> |
| 120 | baba | 2055 | <version>2.0.4</version> |
| 121 | baba | 1423 | </dependency> |
| 122 | <dependency> | ||
| 123 | <groupId>org.seasar.cubby</groupId> | ||
| 124 | baba | 1762 | <artifactId>cubby-oval</artifactId> |
| 125 | baba | 2055 | <version>2.0.4</version> |
| 126 | baba | 1762 | </dependency> |
| 127 | <dependency> | ||
| 128 | <groupId>org.seasar.cubby</groupId> | ||
| 129 | baba | 1047 | <artifactId>cubby-admin</artifactId> |
| 130 | baba | 2055 | <version>2.0.4</version> |
| 131 | baba | 1047 | </dependency> |
| 132 | <dependency> | ||
| 133 | baba | 982 | <groupId>org.seasar.container</groupId> |
| 134 | <artifactId>s2-framework</artifactId> | ||
| 135 | baba | 1806 | <version>2.4.38</version> |
| 136 | baba | 1822 | <exclusions> |
| 137 | <exclusion> | ||
| 138 | <groupId>commons-logging</groupId> | ||
| 139 | <artifactId>commons-logging</artifactId> | ||
| 140 | </exclusion> | ||
| 141 | <exclusion> | ||
| 142 | <groupId>log4j</groupId> | ||
| 143 | <artifactId>log4j</artifactId> | ||
| 144 | </exclusion> | ||
| 145 | </exclusions> | ||
| 146 | baba | 982 | </dependency> |
| 147 | <dependency> | ||
| 148 | <groupId>org.seasar.container</groupId> | ||
| 149 | <artifactId>s2-extension</artifactId> | ||
| 150 | baba | 1806 | <version>2.4.38</version> |
| 151 | baba | 1822 | <exclusions> |
| 152 | <exclusion> | ||
| 153 | <groupId>commons-logging</groupId> | ||
| 154 | <artifactId>commons-logging</artifactId> | ||
| 155 | </exclusion> | ||
| 156 | <exclusion> | ||
| 157 | <groupId>log4j</groupId> | ||
| 158 | <artifactId>log4j</artifactId> | ||
| 159 | </exclusion> | ||
| 160 | </exclusions> | ||
| 161 | baba | 982 | </dependency> |
| 162 | <dependency> | ||
| 163 | <groupId>org.seasar.container</groupId> | ||
| 164 | <artifactId>s2-tiger</artifactId> | ||
| 165 | baba | 1806 | <version>2.4.38</version> |
| 166 | baba | 982 | </dependency> |
| 167 | <dependency> | ||
| 168 | <groupId>org.seasar.dao</groupId> | ||
| 169 | <artifactId>s2-dao</artifactId> | ||
| 170 | baba | 1505 | <version>1.0.50</version> |
| 171 | baba | 982 | </dependency> |
| 172 | <dependency> | ||
| 173 | <groupId>org.seasar.dao</groupId> | ||
| 174 | <artifactId>s2-dao-tiger</artifactId> | ||
| 175 | baba | 1505 | <version>1.0.50</version> |
| 176 | baba | 982 | </dependency> |
| 177 | <dependency> | ||
| 178 | <groupId>org.apache.geronimo.specs</groupId> | ||
| 179 | baba | 1406 | <artifactId>geronimo-servlet_2.5_spec</artifactId> |
| 180 | <version>1.2</version> | ||
| 181 | baba | 982 | <scope>provided</scope> |
| 182 | </dependency> | ||
| 183 | <dependency> | ||
| 184 | <groupId>org.apache.geronimo.specs</groupId> | ||
| 185 | baba | 1543 | <artifactId>geronimo-jsp_2.1_spec</artifactId> |
| 186 | <version>1.0.1</version> | ||
| 187 | <scope>provided</scope> | ||
| 188 | </dependency> | ||
| 189 | <dependency> | ||
| 190 | <groupId>org.apache.geronimo.specs</groupId> | ||
| 191 | baba | 1549 | <artifactId>geronimo-el_1.0_spec</artifactId> |
| 192 | <version>1.0.1</version> | ||
| 193 | <scope>provided</scope> | ||
| 194 | </dependency> | ||
| 195 | <dependency> | ||
| 196 | <groupId>org.apache.geronimo.specs</groupId> | ||
| 197 | baba | 982 | <artifactId>geronimo-jta_1.1_spec</artifactId> |
| 198 | <version>1.0</version> | ||
| 199 | </dependency> | ||
| 200 | <dependency> | ||
| 201 | <groupId>com.h2database</groupId> | ||
| 202 | <artifactId>h2</artifactId> | ||
| 203 | <version>1.0.64</version> | ||
| 204 | </dependency> | ||
| 205 | <dependency> | ||
| 206 | agata | 798 | <groupId>org.seasar.mayaa</groupId> |
| 207 | <artifactId>mayaa</artifactId> | ||
| 208 | baba | 1822 | <version>1.1.26</version> |
| 209 | <exclusions> | ||
| 210 | <exclusion> | ||
| 211 | <groupId>commons-logging</groupId> | ||
| 212 | <artifactId>commons-logging</artifactId> | ||
| 213 | </exclusion> | ||
| 214 | </exclusions> | ||
| 215 | agata | 798 | </dependency> |
| 216 | <dependency> | ||
| 217 | <groupId>org.apache.abdera</groupId> | ||
| 218 | <artifactId>abdera-parser</artifactId> | ||
| 219 | baba | 975 | <version>0.4.0-incubating</version> |
| 220 | baba | 1822 | <exclusions> |
| 221 | <exclusion> | ||
| 222 | <groupId>commons-logging</groupId> | ||
| 223 | <artifactId>commons-logging</artifactId> | ||
| 224 | </exclusion> | ||
| 225 | </exclusions> | ||
| 226 | baba | 975 | </dependency> |
| 227 | <dependency> | ||
| 228 | <groupId>org.apache.abdera</groupId> | ||
| 229 | <artifactId>abdera-server</artifactId> | ||
| 230 | <version>0.4.0-incubating</version> | ||
| 231 | agata | 1124 | <exclusions> |
| 232 | <exclusion> | ||
| 233 | <groupId>javax.servlet</groupId> | ||
| 234 | <artifactId>servlet-api</artifactId> | ||
| 235 | </exclusion> | ||
| 236 | baba | 1388 | <exclusion> |
| 237 | <groupId>commons-logging</groupId> | ||
| 238 | <artifactId>commons-logging</artifactId> | ||
| 239 | </exclusion> | ||
| 240 | agata | 1124 | </exclusions> |
| 241 | baba | 975 | </dependency> |
| 242 | baba | 1388 | <dependency> |
| 243 | baba | 1822 | <groupId>org.slf4j</groupId> |
| 244 | <artifactId>jcl-over-slf4j</artifactId> | ||
| 245 | <version>1.5.6</version> | ||
| 246 | </dependency> | ||
| 247 | <dependency> | ||
| 248 | <groupId>ch.qos.logback</groupId> | ||
| 249 | <artifactId>logback-core</artifactId> | ||
| 250 | <version>0.9.15</version> | ||
| 251 | baba | 1388 | <scope>runtime</scope> |
| 252 | </dependency> | ||
| 253 | baba | 1822 | <dependency> |
| 254 | <groupId>ch.qos.logback</groupId> | ||
| 255 | <artifactId>logback-classic</artifactId> | ||
| 256 | <version>0.9.15</version> | ||
| 257 | <scope>runtime</scope> | ||
| 258 | </dependency> | ||
| 259 | baba | 982 | </dependencies> |
| 260 | baba | 1654 | <profiles> |
| 261 | <profile> | ||
| 262 | baba | 1660 | <id>development</id> |
| 263 | baba | 1654 | <activation> |
| 264 | <activeByDefault>true</activeByDefault> | ||
| 265 | </activation> | ||
| 266 | baba | 1660 | </profile> |
| 267 | <profile> | ||
| 268 | <id>production</id> | ||
| 269 | <activation> | ||
| 270 | <activeByDefault>false</activeByDefault> | ||
| 271 | </activation> | ||
| 272 | <properties> | ||
| 273 | <maven.test.skip>true</maven.test.skip> | ||
| 274 | </properties> | ||
| 275 | baba | 1654 | <build> |
| 276 | baba | 1660 | <resources> |
| 277 | <resource> | ||
| 278 | <directory>src/production/resources</directory> | ||
| 279 | </resource> | ||
| 280 | <resource> | ||
| 281 | <directory>src/main/resources</directory> | ||
| 282 | </resource> | ||
| 283 | </resources> | ||
| 284 | </build> | ||
| 285 | </profile> | ||
| 286 | <profile> | ||
| 287 | <id>tomcat6</id> | ||
| 288 | <activation> | ||
| 289 | <activeByDefault>true</activeByDefault> | ||
| 290 | </activation> | ||
| 291 | <build> | ||
| 292 | baba | 1654 | <plugins> |
| 293 | <plugin> | ||
| 294 | <groupId>org.codehaus.cargo</groupId> | ||
| 295 | <artifactId>cargo-maven2-plugin</artifactId> | ||
| 296 | <configuration> | ||
| 297 | <container> | ||
| 298 | <containerId>tomcat6x</containerId> | ||
| 299 | <!-- | ||
| 300 | <type>embedded</type> | ||
| 301 | --> | ||
| 302 | <!-- for use -Dtomcat.home=c:\usr\local... | ||
| 303 | <type>installed</type> | ||
| 304 | <home>${tomcat.home}</home> | ||
| 305 | --> | ||
| 306 | <zipUrlInstaller> | ||
| 307 | <url> | ||
| 308 | http://archive.apache.org/dist/tomcat/tomcat-6/v6.0.18/bin/apache-tomcat-6.0.18.zip | ||
| 309 | </url> | ||
| 310 | <installDir>${project.build.directory}</installDir> | ||
| 311 | </zipUrlInstaller> | ||
| 312 | <output> | ||
| 313 | ${project.build.directory}/tomcat6x.log | ||
| 314 | </output> | ||
| 315 | <log>${project.build.directory}/cargo.log</log> | ||
| 316 | </container> | ||
| 317 | </configuration> | ||
| 318 | <executions> | ||
| 319 | <execution> | ||
| 320 | <id>start-container</id> | ||
| 321 | <phase>pre-integration-test</phase> | ||
| 322 | <goals> | ||
| 323 | <goal>start</goal> | ||
| 324 | </goals> | ||
| 325 | <configuration> | ||
| 326 | <wait>false</wait> | ||
| 327 | </configuration> | ||
| 328 | </execution> | ||
| 329 | <execution> | ||
| 330 | <id>stop-container</id> | ||
| 331 | <phase>post-integration-test</phase> | ||
| 332 | <goals> | ||
| 333 | <goal>stop</goal> | ||
| 334 | </goals> | ||
| 335 | </execution> | ||
| 336 | </executions> | ||
| 337 | </plugin> | ||
| 338 | baba | 1660 | <plugin> |
| 339 | <groupId>org.codehaus.mojo</groupId> | ||
| 340 | <artifactId>selenium-maven-plugin</artifactId> | ||
| 341 | <executions> | ||
| 342 | <execution> | ||
| 343 | <id>selenese-firefox</id> | ||
| 344 | <phase>integration-test</phase> | ||
| 345 | <goals> | ||
| 346 | <goal>selenese</goal> | ||
| 347 | </goals> | ||
| 348 | <configuration> | ||
| 349 | <browser>*firefox</browser> | ||
| 350 | </configuration> | ||
| 351 | </execution> | ||
| 352 | </executions> | ||
| 353 | </plugin> | ||
| 354 | baba | 1654 | </plugins> |
| 355 | </build> | ||
| 356 | </profile> | ||
| 357 | </profiles> | ||
| 358 | baba | 982 | </project> |
| Repository Top ViewVC Help |
![]() |
| Powered by ViewVC |

