[sandbox.s2wicket]/trunk/s2wicket/pom.xml
Parent Directory
|
Revision Log
Revision 140 -
(show annotations)
Mon Jul 6 18:19:58 2009 JST (3 years, 11 months ago) by chimerast
File MIME type: text/plain
File size: 5748 byte(s)
Mon Jul 6 18:19:58 2009 JST (3 years, 11 months ago) by chimerast
File MIME type: text/plain
File size: 5748 byte(s)
| 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | 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 | |
| 5 | <groupId>org.seasar.wicket</groupId> |
| 6 | <artifactId>s2wicket</artifactId> |
| 7 | <version>1.4-rc6</version> |
| 8 | <packaging>jar</packaging> |
| 9 | <properties> |
| 10 | <wicket.version>1.4-rc6</wicket.version> |
| 11 | <s2container.version>2.4.38</s2container.version> |
| 12 | <s2dao.version>1.0.50</s2dao.version> |
| 13 | <slf4j.version>1.5.8</slf4j.version> |
| 14 | </properties> |
| 15 | <dependencies> |
| 16 | <dependency> |
| 17 | <groupId>org.apache.wicket</groupId> |
| 18 | <artifactId>wicket</artifactId> |
| 19 | <version>${wicket.version}</version> |
| 20 | </dependency> |
| 21 | <dependency> |
| 22 | <groupId>org.apache.wicket</groupId> |
| 23 | <artifactId>wicket-ioc</artifactId> |
| 24 | <version>${wicket.version}</version> |
| 25 | </dependency> |
| 26 | |
| 27 | <dependency> |
| 28 | <groupId>org.seasar.container</groupId> |
| 29 | <artifactId>s2-framework</artifactId> |
| 30 | <version>${s2container.version}</version> |
| 31 | </dependency> |
| 32 | |
| 33 | <dependency> |
| 34 | <groupId>javax.servlet</groupId> |
| 35 | <artifactId>servlet-api</artifactId> |
| 36 | <version>2.4</version> |
| 37 | <scope>provided</scope> |
| 38 | </dependency> |
| 39 | |
| 40 | <dependency> |
| 41 | <groupId>org.slf4j</groupId> |
| 42 | <artifactId>slf4j-api</artifactId> |
| 43 | <version>${slf4j.version}</version> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.slf4j</groupId> |
| 47 | <artifactId>jcl-over-slf4j</artifactId> |
| 48 | <version>${slf4j.version}</version> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>commons-logging</groupId> |
| 52 | <artifactId>commons-logging</artifactId> |
| 53 | <version>99.0-does-not-exist</version> |
| 54 | </dependency> |
| 55 | </dependencies> |
| 56 | |
| 57 | <build> |
| 58 | <plugins> |
| 59 | <plugin> |
| 60 | <groupId>org.apache.maven.plugins</groupId> |
| 61 | <artifactId>maven-compiler-plugin</artifactId> |
| 62 | <configuration> |
| 63 | <encoding>UTF-8</encoding> |
| 64 | <source>1.5</source> |
| 65 | <target>1.5</target> |
| 66 | </configuration> |
| 67 | </plugin> |
| 68 | <plugin> |
| 69 | <groupId>org.apache.maven.plugins</groupId> |
| 70 | <artifactId>maven-source-plugin</artifactId> |
| 71 | <executions> |
| 72 | <execution> |
| 73 | <id>attach-sources</id> |
| 74 | <phase>verify</phase> |
| 75 | <goals> |
| 76 | <goal>jar</goal> |
| 77 | </goals> |
| 78 | </execution> |
| 79 | </executions> |
| 80 | </plugin> |
| 81 | <plugin> |
| 82 | <groupId>org.apache.maven.plugins</groupId> |
| 83 | <artifactId>maven-javadoc-plugin</artifactId> |
| 84 | <configuration> |
| 85 | <source>1.5</source> |
| 86 | <encoding>UTF-8</encoding> |
| 87 | <docencoding>UTF-8</docencoding> |
| 88 | <charset>UTF-8</charset> |
| 89 | <links> |
| 90 | <link>http://java.sun.com/j2se/1.5.0/ja/docs/ja/api/</link> |
| 91 | </links> |
| 92 | </configuration> |
| 93 | <executions> |
| 94 | <execution> |
| 95 | <id>attach-javadocs</id> |
| 96 | <phase>verify</phase> |
| 97 | <goals> |
| 98 | <goal>jar</goal> |
| 99 | </goals> |
| 100 | </execution> |
| 101 | <execution> |
| 102 | <phase>site</phase> |
| 103 | <goals> |
| 104 | <goal>javadoc</goal> |
| 105 | </goals> |
| 106 | </execution> |
| 107 | </executions> |
| 108 | </plugin> |
| 109 | <plugin> |
| 110 | <groupId>org.apache.maven.plugins</groupId> |
| 111 | <artifactId>maven-site-plugin</artifactId> |
| 112 | <configuration> |
| 113 | <locales>ja</locales> |
| 114 | <inputEncoding>UTF-8</inputEncoding> |
| 115 | <outputEncoding>UTF-8</outputEncoding> |
| 116 | </configuration> |
| 117 | </plugin> |
| 118 | </plugins> |
| 119 | <extensions> |
| 120 | <extension> |
| 121 | <groupId>org.apache.maven.wagon</groupId> |
| 122 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 123 | <version>1.0-beta-5</version> |
| 124 | </extension> |
| 125 | </extensions> |
| 126 | </build> |
| 127 | <reporting /> |
| 128 | |
| 129 | <repositories> |
| 130 | <repository> |
| 131 | <id>maven.seasar.org</id> |
| 132 | <name>The Seasar Foundation Maven2 Repository</name> |
| 133 | <url>http://maven.seasar.org/maven2</url> |
| 134 | </repository> |
| 135 | <repository> |
| 136 | <id>Version99</id> |
| 137 | <name>Version 99 Does Not Exist Maven repository</name> |
| 138 | <url>http://no-commons-logging.zapto.org/mvn2</url> |
| 139 | </repository> |
| 140 | </repositories> |
| 141 | |
| 142 | <name>S2Wicket</name> |
| 143 | <description>Seasar Container extension for Wicket</description> |
| 144 | <url>http://s2wicket.sandbox.seasar.org/</url> |
| 145 | <licenses> |
| 146 | <license> |
| 147 | <name>The Apache Software License, Version 2.0</name> |
| 148 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 149 | <distribution>repo</distribution> |
| 150 | </license> |
| 151 | </licenses> |
| 152 | <organization> |
| 153 | <name>The Seasar Foundation and the others</name> |
| 154 | <url>http://www.seasar.org/</url> |
| 155 | </organization> |
| 156 | |
| 157 | <scm> |
| 158 | <connection>scm:svn:https://www.seasar.org/svn/sandbox/s2wicket/trunk/s2wicket</connection> |
| 159 | <developerConnection>scm:svn:https://www.seasar.org/svn/sandbox/s2wicket/trunk/s2wicket</developerConnection> |
| 160 | <url>http://svn.seasar.org/browse/?root=sandbox.s2wicket</url> |
| 161 | </scm> |
| 162 | <distributionManagement> |
| 163 | <repository> |
| 164 | <uniqueVersion>false</uniqueVersion> |
| 165 | <id>maven.seasar.org</id> |
| 166 | <name>The Seasar Foundation Maven2 Repository</name> |
| 167 | <url>dav:https://www.seasar.org/maven/maven2</url> |
| 168 | </repository> |
| 169 | <snapshotRepository> |
| 170 | <uniqueVersion>true</uniqueVersion> |
| 171 | <id>maven.seasar.org</id> |
| 172 | <name>The Seasar Foundation Maven2 Snapshot Repository</name> |
| 173 | <url>dav:https://www.seasar.org/maven/maven2-snapshot</url> |
| 174 | </snapshotRepository> |
| 175 | </distributionManagement> |
| 176 | </project> |
Properties
| Name | Value |
|---|---|
| svn:mime-type | text/plain |
| Repository Top ViewVC Help |
![]() |
| Powered by ViewVC |

