[cubby]/branches/2.0.x/cubby-apps/cubby-wiki/pom.xml
Parent Directory
|
Revision Log
Revision 1919 -
(hide annotations)
Sat Aug 8 19:13:01 2009 JST (3 years, 9 months ago) by baba
File MIME type: text/plain
File size: 7506 byte(s)
Sat Aug 8 19:13:01 2009 JST (3 years, 9 months ago) by baba
File MIME type: text/plain
File size: 7506 byte(s)
2.0.0-rc2 -> 2.0.0
| 1 | agata | 1245 | <?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 | 1919 | <version>2.0.0-rc3-SNAPSHOT</version> |
| 7 | baba | 1660 | </parent> |
| 8 | baba | 1505 | <modelVersion>4.0.0</modelVersion> |
| 9 | <groupId>org.seasar.cubby</groupId> | ||
| 10 | baba | 1891 | <artifactId>cubby-wiki</artifactId> |
| 11 | baba | 1505 | <packaging>war</packaging> |
| 12 | baba | 1541 | <name>Cubby Wiki</name> |
| 13 | baba | 1505 | <build> |
| 14 | <finalName>guice-wiki</finalName> | ||
| 15 | <plugins> | ||
| 16 | <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-eclipse-plugin</artifactId> | ||
| 26 | <configuration> | ||
| 27 | <wtpversion>2.0</wtpversion> | ||
| 28 | <downloadSources>true</downloadSources> | ||
| 29 | <downloadJavadocs>true</downloadJavadocs> | ||
| 30 | <additionalConfig> | ||
| 31 | <file> | ||
| 32 | <name> | ||
| 33 | .settings/org.eclipse.core.resources.prefs | ||
| 34 | </name> | ||
| 35 | <content> | ||
| 36 | baba | 1662 | <![CDATA[ |
| 37 | eclipse.preferences.version=1 | ||
| 38 | encoding/<project>=UTF-8 | ||
| 39 | ]]> | ||
| 40 | </content> | ||
| 41 | </file> | ||
| 42 | <file> | ||
| 43 | <name> | ||
| 44 | .settings/org.eclipse.core.runtime.prefs | ||
| 45 | </name> | ||
| 46 | <content> | ||
| 47 | <![CDATA[ | ||
| 48 | eclipse.preferences.version=1 | ||
| 49 | line.separator=\n | ||
| 50 | ]]> | ||
| 51 | </content> | ||
| 52 | </file> | ||
| 53 | </additionalConfig> | ||
| 54 | </configuration> | ||
| 55 | </plugin> | ||
| 56 | baba | 1505 | <plugin> |
| 57 | baba | 1662 | <groupId>org.codehaus.mojo</groupId> |
| 58 | <artifactId>tomcat-maven-plugin</artifactId> | ||
| 59 | </plugin> | ||
| 60 | <plugin> | ||
| 61 | baba | 1505 | <groupId>org.mortbay.jetty</groupId> |
| 62 | <artifactId>maven-jetty-plugin</artifactId> | ||
| 63 | </plugin> | ||
| 64 | baba | 1662 | </plugins> |
| 65 | </build> | ||
| 66 | <repositories> | ||
| 67 | baba | 1505 | <repository> |
| 68 | baba | 1662 | <id>maven.seasar.org</id> |
| 69 | <name>The Seasar Foundation Maven2 Repository</name> | ||
| 70 | <url>http://maven.seasar.org/maven2</url> | ||
| 71 | </repository> | ||
| 72 | baba | 1782 | <repository> |
| 73 | <id>google-maven-repository</id> | ||
| 74 | <name>Google Maven Repository</name> | ||
| 75 | <url>http://google-maven-repository.googlecode.com/svn/repository/</url> | ||
| 76 | </repository> | ||
| 77 | baba | 1662 | </repositories> |
| 78 | <dependencies> | ||
| 79 | <dependency> | ||
| 80 | <groupId>junit</groupId> | ||
| 81 | <artifactId>junit</artifactId> | ||
| 82 | baba | 1798 | <version>4.6</version> |
| 83 | baba | 1662 | <scope>test</scope> |
| 84 | </dependency> | ||
| 85 | <dependency> | ||
| 86 | <groupId>javax.servlet</groupId> | ||
| 87 | <artifactId>servlet-api</artifactId> | ||
| 88 | baba | 1505 | <version>2.5</version> |
| 89 | baba | 1662 | <scope>provided</scope> |
| 90 | baba | 1505 | </dependency> |
| 91 | <dependency> | ||
| 92 | baba | 1662 | <groupId>javax.servlet</groupId> |
| 93 | <artifactId>jstl</artifactId> | ||
| 94 | <version>1.2</version> | ||
| 95 | </dependency> | ||
| 96 | <dependency> | ||
| 97 | baba | 1821 | <groupId>javax.persistence</groupId> |
| 98 | <artifactId>persistence-api</artifactId> | ||
| 99 | <version>1.0</version> | ||
| 100 | </dependency> | ||
| 101 | <dependency> | ||
| 102 | <groupId>javax.transaction</groupId> | ||
| 103 | <artifactId>jta</artifactId> | ||
| 104 | <version>1.1</version> | ||
| 105 | </dependency> | ||
| 106 | <dependency> | ||
| 107 | baba | 1505 | <groupId>org.seasar.cubby</groupId> |
| 108 | <artifactId>cubby</artifactId> | ||
| 109 | baba | 1919 | <version>2.0.0</version> |
| 110 | baba | 1505 | </dependency> |
| 111 | <dependency> | ||
| 112 | <groupId>org.seasar.cubby</groupId> | ||
| 113 | <artifactId>cubby-guice</artifactId> | ||
| 114 | baba | 1919 | <version>2.0.0</version> |
| 115 | baba | 1505 | </dependency> |
| 116 | baba | 1662 | <dependency> |
| 117 | baba | 1794 | <groupId>org.seasar.cubby</groupId> |
| 118 | <artifactId>cubby-oval</artifactId> | ||
| 119 | baba | 1919 | <version>2.0.0</version> |
| 120 | baba | 1794 | </dependency> |
| 121 | <dependency> | ||
| 122 | baba | 1907 | <groupId>com.google.inject</groupId> |
| 123 | baba | 1662 | <artifactId>guice</artifactId> |
| 124 | baba | 1788 | <version>2.0</version> |
| 125 | baba | 1662 | </dependency> |
| 126 | <dependency> | ||
| 127 | baba | 1907 | <groupId>com.google.inject.extensions</groupId> |
| 128 | baba | 1662 | <artifactId>guice-servlet</artifactId> |
| 129 | baba | 1788 | <version>2.0</version> |
| 130 | </dependency> | ||
| 131 | <dependency> | ||
| 132 | <groupId>aopalliance</groupId> | ||
| 133 | <artifactId>aopalliance</artifactId> | ||
| 134 | baba | 1662 | <version>1.0</version> |
| 135 | </dependency> | ||
| 136 | <dependency> | ||
| 137 | <groupId>org.slf4j</groupId> | ||
| 138 | <artifactId>slf4j-api</artifactId> | ||
| 139 | <version>1.5.6</version> | ||
| 140 | </dependency> | ||
| 141 | <dependency> | ||
| 142 | baba | 1821 | <groupId>org.hibernate</groupId> |
| 143 | <artifactId>hibernate-entitymanager</artifactId> | ||
| 144 | <version>3.4.0.GA</version> | ||
| 145 | baba | 1662 | </dependency> |
| 146 | <dependency> | ||
| 147 | <groupId>ch.qos.logback</groupId> | ||
| 148 | <artifactId>logback-core</artifactId> | ||
| 149 | baba | 1821 | <version>0.9.15</version> |
| 150 | baba | 1662 | <scope>runtime</scope> |
| 151 | </dependency> | ||
| 152 | <dependency> | ||
| 153 | <groupId>ch.qos.logback</groupId> | ||
| 154 | <artifactId>logback-classic</artifactId> | ||
| 155 | baba | 1821 | <version>0.9.15</version> |
| 156 | baba | 1662 | <scope>runtime</scope> |
| 157 | </dependency> | ||
| 158 | <dependency> | ||
| 159 | <groupId>com.h2database</groupId> | ||
| 160 | <artifactId>h2</artifactId> | ||
| 161 | baba | 1821 | <version>1.1.115</version> |
| 162 | baba | 1662 | <scope>runtime</scope> |
| 163 | </dependency> | ||
| 164 | baba | 1505 | </dependencies> |
| 165 | <profiles> | ||
| 166 | <profile> | ||
| 167 | <id>development</id> | ||
| 168 | <activation> | ||
| 169 | <activeByDefault>true</activeByDefault> | ||
| 170 | </activation> | ||
| 171 | </profile> | ||
| 172 | <profile> | ||
| 173 | <id>production</id> | ||
| 174 | <activation> | ||
| 175 | <activeByDefault>false</activeByDefault> | ||
| 176 | </activation> | ||
| 177 | <properties> | ||
| 178 | <maven.test.skip>true</maven.test.skip> | ||
| 179 | </properties> | ||
| 180 | <build> | ||
| 181 | <resources> | ||
| 182 | <resource> | ||
| 183 | <directory>src/production/resources</directory> | ||
| 184 | </resource> | ||
| 185 | <resource> | ||
| 186 | <directory>src/main/resources</directory> | ||
| 187 | </resource> | ||
| 188 | </resources> | ||
| 189 | </build> | ||
| 190 | </profile> | ||
| 191 | baba | 1660 | <profile> |
| 192 | <id>tomcat6</id> | ||
| 193 | <activation> | ||
| 194 | <activeByDefault>true</activeByDefault> | ||
| 195 | </activation> | ||
| 196 | <build> | ||
| 197 | <plugins> | ||
| 198 | <plugin> | ||
| 199 | <groupId>org.codehaus.cargo</groupId> | ||
| 200 | <artifactId>cargo-maven2-plugin</artifactId> | ||
| 201 | <configuration> | ||
| 202 | <container> | ||
| 203 | <containerId>tomcat6x</containerId> | ||
| 204 | <!-- | ||
| 205 | <type>embedded</type> | ||
| 206 | --> | ||
| 207 | <!-- for use -Dtomcat.home=c:\usr\local... | ||
| 208 | <type>installed</type> | ||
| 209 | <home>${tomcat.home}</home> | ||
| 210 | --> | ||
| 211 | <zipUrlInstaller> | ||
| 212 | <url> | ||
| 213 | http://archive.apache.org/dist/tomcat/tomcat-6/v6.0.18/bin/apache-tomcat-6.0.18.zip | ||
| 214 | </url> | ||
| 215 | <installDir>${project.build.directory}</installDir> | ||
| 216 | </zipUrlInstaller> | ||
| 217 | <output> | ||
| 218 | ${project.build.directory}/tomcat6x.log | ||
| 219 | </output> | ||
| 220 | <log>${project.build.directory}/cargo.log</log> | ||
| 221 | </container> | ||
| 222 | </configuration> | ||
| 223 | <executions> | ||
| 224 | <execution> | ||
| 225 | <id>start-container</id> | ||
| 226 | <phase>pre-integration-test</phase> | ||
| 227 | <goals> | ||
| 228 | <goal>start</goal> | ||
| 229 | </goals> | ||
| 230 | <configuration> | ||
| 231 | <wait>false</wait> | ||
| 232 | </configuration> | ||
| 233 | </execution> | ||
| 234 | <execution> | ||
| 235 | <id>stop-container</id> | ||
| 236 | <phase>post-integration-test</phase> | ||
| 237 | <goals> | ||
| 238 | <goal>stop</goal> | ||
| 239 | </goals> | ||
| 240 | </execution> | ||
| 241 | </executions> | ||
| 242 | </plugin> | ||
| 243 | </plugins> | ||
| 244 | </build> | ||
| 245 | </profile> | ||
| 246 | baba | 1505 | </profiles> |
| 247 | agata | 1245 | </project> |
Properties
| Name | Value |
|---|---|
| svn:mime-type | text/plain |
| Repository Top ViewVC Help |
![]() |
| Powered by ViewVC |

