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

