[sandbox.s2wicket]/trunk/s2wicket/pom.xml
Parent Directory
|
Revision Log
Revision 177 -
(show annotations)
Thu Mar 11 15:58:26 2010 JST (3 years, 3 months ago) by chimerast
File MIME type: text/plain
File size: 6305 byte(s)
Thu Mar 11 15:58:26 2010 JST (3 years, 3 months ago) by chimerast
File MIME type: text/plain
File size: 6305 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.7</version> |
| 8 | <packaging>jar</packaging> |
| 9 | <properties> |
| 10 | <wicket.version>1.4.7</wicket.version> |
| 11 | <s2container.version>2.4.41</s2container.version> |
| 12 | <s2dao.version>1.0.51</s2dao.version> |
| 13 | <slf4j.version>1.5.10</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 | <sourceDirectory>src/main/java</sourceDirectory> |
| 59 | <resources> |
| 60 | <resource> |
| 61 | <directory>src/main/resources</directory> |
| 62 | </resource> |
| 63 | <resource> |
| 64 | <directory>src/main/java</directory> |
| 65 | <includes> |
| 66 | <include>**</include> |
| 67 | </includes> |
| 68 | <excludes> |
| 69 | <exclude>**/*.java</exclude> |
| 70 | </excludes> |
| 71 | </resource> |
| 72 | </resources> |
| 73 | <plugins> |
| 74 | <plugin> |
| 75 | <groupId>org.apache.maven.plugins</groupId> |
| 76 | <artifactId>maven-compiler-plugin</artifactId> |
| 77 | <configuration> |
| 78 | <encoding>UTF-8</encoding> |
| 79 | <source>1.5</source> |
| 80 | <target>1.5</target> |
| 81 | </configuration> |
| 82 | </plugin> |
| 83 | <plugin> |
| 84 | <groupId>org.apache.maven.plugins</groupId> |
| 85 | <artifactId>maven-source-plugin</artifactId> |
| 86 | <executions> |
| 87 | <execution> |
| 88 | <id>attach-sources</id> |
| 89 | <phase>verify</phase> |
| 90 | <goals> |
| 91 | <goal>jar</goal> |
| 92 | </goals> |
| 93 | </execution> |
| 94 | </executions> |
| 95 | </plugin> |
| 96 | <plugin> |
| 97 | <groupId>org.apache.maven.plugins</groupId> |
| 98 | <artifactId>maven-javadoc-plugin</artifactId> |
| 99 | <configuration> |
| 100 | <source>1.5</source> |
| 101 | <encoding>UTF-8</encoding> |
| 102 | <docencoding>UTF-8</docencoding> |
| 103 | <charset>UTF-8</charset> |
| 104 | <links> |
| 105 | <link>http://java.sun.com/j2se/1.5.0/ja/docs/ja/api/</link> |
| 106 | </links> |
| 107 | </configuration> |
| 108 | <executions> |
| 109 | <execution> |
| 110 | <id>attach-javadocs</id> |
| 111 | <phase>verify</phase> |
| 112 | <goals> |
| 113 | <goal>jar</goal> |
| 114 | </goals> |
| 115 | </execution> |
| 116 | <execution> |
| 117 | <phase>site</phase> |
| 118 | <goals> |
| 119 | <goal>javadoc</goal> |
| 120 | </goals> |
| 121 | </execution> |
| 122 | </executions> |
| 123 | </plugin> |
| 124 | <plugin> |
| 125 | <groupId>org.apache.maven.plugins</groupId> |
| 126 | <artifactId>maven-site-plugin</artifactId> |
| 127 | <configuration> |
| 128 | <locales>ja</locales> |
| 129 | <inputEncoding>UTF-8</inputEncoding> |
| 130 | <outputEncoding>UTF-8</outputEncoding> |
| 131 | </configuration> |
| 132 | </plugin> |
| 133 | <plugin> |
| 134 | <groupId>org.apache.maven.plugins</groupId> |
| 135 | <artifactId>maven-assembly-plugin</artifactId> |
| 136 | <configuration> |
| 137 | <appendAssemblyId>false</appendAssemblyId> |
| 138 | <descriptors> |
| 139 | <descriptor>src/main/assembly/distribute.xml</descriptor> |
| 140 | </descriptors> |
| 141 | </configuration> |
| 142 | </plugin> |
| 143 | </plugins> |
| 144 | </build> |
| 145 | <reporting /> |
| 146 | |
| 147 | <repositories> |
| 148 | <repository> |
| 149 | <id>maven.seasar.org</id> |
| 150 | <name>The Seasar Foundation Maven2 Repository</name> |
| 151 | <url>http://maven.seasar.org/maven2</url> |
| 152 | </repository> |
| 153 | <repository> |
| 154 | <id>Version99</id> |
| 155 | <name>Version 99 Does Not Exist Maven repository</name> |
| 156 | <url>http://no-commons-logging.zapto.org/mvn2</url> |
| 157 | </repository> |
| 158 | </repositories> |
| 159 | |
| 160 | <name>S2Wicket</name> |
| 161 | <description>Seasar Container extension for Wicket</description> |
| 162 | <url>http://s2wicket.sandbox.seasar.org/</url> |
| 163 | <licenses> |
| 164 | <license> |
| 165 | <name>The Apache Software License, Version 2.0</name> |
| 166 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 167 | <distribution>repo</distribution> |
| 168 | </license> |
| 169 | </licenses> |
| 170 | <organization> |
| 171 | <name>The Seasar Foundation and the others</name> |
| 172 | <url>http://www.seasar.org/</url> |
| 173 | </organization> |
| 174 | |
| 175 | <scm> |
| 176 | <connection>scm:svn:https://www.seasar.org/svn/sandbox/s2wicket/trunk/s2wicket</connection> |
| 177 | <developerConnection>scm:svn:https://www.seasar.org/svn/sandbox/s2wicket/trunk/s2wicket</developerConnection> |
| 178 | <url>http://svn.seasar.org/browse/?root=sandbox.s2wicket</url> |
| 179 | </scm> |
| 180 | <distributionManagement> |
| 181 | <repository> |
| 182 | <uniqueVersion>false</uniqueVersion> |
| 183 | <id>maven.seasar.org</id> |
| 184 | <name>The Seasar Foundation Maven2 Repository</name> |
| 185 | <url>dav:https://www.seasar.org/maven/maven2</url> |
| 186 | </repository> |
| 187 | <snapshotRepository> |
| 188 | <uniqueVersion>true</uniqueVersion> |
| 189 | <id>maven.seasar.org</id> |
| 190 | <name>The Seasar Foundation Maven2 Snapshot Repository</name> |
| 191 | <url>dav:https://www.seasar.org/maven/maven2-snapshot</url> |
| 192 | </snapshotRepository> |
| 193 | </distributionManagement> |
| 194 | </project> |
Properties
| Name | Value |
|---|---|
| svn:mime-type | text/plain |
| Repository Top ViewVC Help |
![]() |
| Powered by ViewVC |

