[cubby]/branches/2.0.x/cubby-project/cubby-s2/pom.xml
Parent Directory
|
Revision Log
Revision 2005 -
(hide annotations)
Tue Oct 6 02:36:49 2009 JST (3 years, 7 months ago) by baba
File MIME type: text/plain
File size: 4678 byte(s)
Tue Oct 6 02:36:49 2009 JST (3 years, 7 months ago) by baba
File MIME type: text/plain
File size: 4678 byte(s)
[maven-release-plugin] prepare for next development iteration
| 1 | baba | 1287 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | baba | 1627 | <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 | 1287 | <parent> |
| 4 | <artifactId>cubby-project</artifactId> | ||
| 5 | <groupId>org.seasar.cubby</groupId> | ||
| 6 | baba | 2005 | <version>2.0.3-SNAPSHOT</version> |
| 7 | baba | 1287 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> | ||
| 9 | <artifactId>cubby-s2</artifactId> | ||
| 10 | <packaging>jar</packaging> | ||
| 11 | baba | 1817 | <name>Cubby S2Container Plugin</name> |
| 12 | baba | 1287 | <build> |
| 13 | <plugins> | ||
| 14 | <plugin> | ||
| 15 | <groupId>org.apache.maven.plugins</groupId> | ||
| 16 | <artifactId>maven-eclipse-plugin</artifactId> | ||
| 17 | <configuration> | ||
| 18 | <downloadSources>true</downloadSources> | ||
| 19 | <downloadJavadocs>true</downloadJavadocs> | ||
| 20 | <additionalBuildcommands> | ||
| 21 | <buildCommand> | ||
| 22 | <name>org.seasar.kijimuna.core.builder</name> | ||
| 23 | <arguments> | ||
| 24 | </arguments> | ||
| 25 | </buildCommand> | ||
| 26 | <buildCommand> | ||
| 27 | <name>org.seasar.kijimuna.core.validator</name> | ||
| 28 | <arguments> | ||
| 29 | </arguments> | ||
| 30 | </buildCommand> | ||
| 31 | </additionalBuildcommands> | ||
| 32 | <additionalProjectnatures> | ||
| 33 | <projectnature>org.seasar.kijimuna.core.nature</projectnature> | ||
| 34 | </additionalProjectnatures> | ||
| 35 | </configuration> | ||
| 36 | </plugin> | ||
| 37 | baba | 1670 | <plugin> |
| 38 | <groupId>org.jvnet</groupId> | ||
| 39 | <artifactId>animal-sniffer</artifactId> | ||
| 40 | <executions> | ||
| 41 | <execution> | ||
| 42 | <goals> | ||
| 43 | <goal>check</goal> | ||
| 44 | </goals> | ||
| 45 | </execution> | ||
| 46 | </executions> | ||
| 47 | </plugin> | ||
| 48 | baba | 1287 | </plugins> |
| 49 | </build> | ||
| 50 | <dependencies> | ||
| 51 | <dependency> | ||
| 52 | <groupId>junit</groupId> | ||
| 53 | <artifactId>junit</artifactId> | ||
| 54 | baba | 1797 | <version>4.6</version> |
| 55 | baba | 1287 | <scope>provided</scope> |
| 56 | </dependency> | ||
| 57 | <dependency> | ||
| 58 | <groupId>org.apache.geronimo.specs</groupId> | ||
| 59 | baba | 1409 | <artifactId>geronimo-servlet_2.5_spec</artifactId> |
| 60 | <version>1.2</version> | ||
| 61 | baba | 1287 | <scope>provided</scope> |
| 62 | </dependency> | ||
| 63 | <dependency> | ||
| 64 | baba | 1409 | <groupId>org.apache.geronimo.specs</groupId> |
| 65 | <artifactId>geronimo-jsp_2.1_spec</artifactId> | ||
| 66 | <version>1.0.1</version> | ||
| 67 | <scope>provided</scope> | ||
| 68 | </dependency> | ||
| 69 | <dependency> | ||
| 70 | <groupId>org.apache.geronimo.specs</groupId> | ||
| 71 | <artifactId>geronimo-el_1.0_spec</artifactId> | ||
| 72 | <version>1.0.1</version> | ||
| 73 | <scope>provided</scope> | ||
| 74 | </dependency> | ||
| 75 | <dependency> | ||
| 76 | baba | 1287 | <groupId>org.seasar.cubby</groupId> |
| 77 | <artifactId>cubby</artifactId> | ||
| 78 | baba | 2005 | <version>2.0.3-SNAPSHOT</version> |
| 79 | baba | 1287 | </dependency> |
| 80 | <dependency> | ||
| 81 | baba | 1425 | <groupId>org.seasar.cubby</groupId> |
| 82 | <artifactId>cubby-unit</artifactId> | ||
| 83 | baba | 2005 | <version>2.0.3-SNAPSHOT</version> |
| 84 | baba | 1425 | </dependency> |
| 85 | <dependency> | ||
| 86 | baba | 1287 | <groupId>org.seasar.container</groupId> |
| 87 | <artifactId>s2-framework</artifactId> | ||
| 88 | baba | 1805 | <version>2.4.38</version> |
| 89 | baba | 1287 | <exclusions> |
| 90 | <exclusion> | ||
| 91 | <groupId>commons-logging</groupId> | ||
| 92 | <artifactId>commons-logging</artifactId> | ||
| 93 | </exclusion> | ||
| 94 | <exclusion> | ||
| 95 | <groupId>log4j</groupId> | ||
| 96 | <artifactId>log4j</artifactId> | ||
| 97 | </exclusion> | ||
| 98 | </exclusions> | ||
| 99 | </dependency> | ||
| 100 | <dependency> | ||
| 101 | <groupId>org.seasar.container</groupId> | ||
| 102 | <artifactId>s2-extension</artifactId> | ||
| 103 | baba | 1805 | <version>2.4.38</version> |
| 104 | baba | 1287 | <exclusions> |
| 105 | <exclusion> | ||
| 106 | baba | 1822 | <groupId>commons-logging</groupId> |
| 107 | <artifactId>commons-logging</artifactId> | ||
| 108 | </exclusion> | ||
| 109 | <exclusion> | ||
| 110 | baba | 1287 | <groupId>log4j</groupId> |
| 111 | <artifactId>log4j</artifactId> | ||
| 112 | </exclusion> | ||
| 113 | </exclusions> | ||
| 114 | </dependency> | ||
| 115 | <dependency> | ||
| 116 | <groupId>org.seasar.container</groupId> | ||
| 117 | <artifactId>s2-tiger</artifactId> | ||
| 118 | baba | 1805 | <version>2.4.38</version> |
| 119 | baba | 1287 | <exclusions> |
| 120 | <exclusion> | ||
| 121 | <groupId>log4j</groupId> | ||
| 122 | <artifactId>log4j</artifactId> | ||
| 123 | </exclusion> | ||
| 124 | </exclusions> | ||
| 125 | </dependency> | ||
| 126 | <dependency> | ||
| 127 | <groupId>org.slf4j</groupId> | ||
| 128 | <artifactId>slf4j-api</artifactId> | ||
| 129 | baba | 1359 | <version>1.5.6</version> |
| 130 | baba | 1287 | </dependency> |
| 131 | <dependency> | ||
| 132 | <groupId>org.slf4j</groupId> | ||
| 133 | <artifactId>jcl-over-slf4j</artifactId> | ||
| 134 | baba | 1359 | <version>1.5.6</version> |
| 135 | baba | 1287 | </dependency> |
| 136 | <dependency> | ||
| 137 | <groupId>ch.qos.logback</groupId> | ||
| 138 | <artifactId>logback-core</artifactId> | ||
| 139 | baba | 1425 | <version>0.9.15</version> |
| 140 | baba | 1287 | <scope>test</scope> |
| 141 | </dependency> | ||
| 142 | <dependency> | ||
| 143 | <groupId>ch.qos.logback</groupId> | ||
| 144 | <artifactId>logback-classic</artifactId> | ||
| 145 | baba | 1425 | <version>0.9.15</version> |
| 146 | baba | 1287 | <scope>test</scope> |
| 147 | </dependency> | ||
| 148 | </dependencies> | ||
| 149 | </project> |
Properties
| Name | Value |
|---|---|
| svn:mime-type | text/plain |
| Repository Top ViewVC Help |
![]() |
| Powered by ViewVC |

