[sandbox.s2wicket]/trunk/s2wicket-example/pom.xml
Parent Directory
|
Revision Log
Revision 112 -
(show annotations)
Wed Apr 22 10:36:16 2009 JST (4 years ago) by chimerast
File MIME type: text/plain
File size: 3424 byte(s)
Wed Apr 22 10:36:16 2009 JST (4 years ago) by chimerast
File MIME type: text/plain
File size: 3424 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.karatachi</groupId> |
| 6 | <artifactId>karatachi-sawicket-example</artifactId> |
| 7 | <version>1.4-SNAPSHOT</version> |
| 8 | <packaging>war</packaging> |
| 9 | <dependencies> |
| 10 | <dependency> |
| 11 | <groupId>org.seasar.wicket</groupId> |
| 12 | <artifactId>s2wicket-libs</artifactId> |
| 13 | <version>${version}</version> |
| 14 | </dependency> |
| 15 | |
| 16 | <dependency> |
| 17 | <groupId>ch.qos.logback</groupId> |
| 18 | <artifactId>logback-classic</artifactId> |
| 19 | <version>0.9.15</version> |
| 20 | </dependency> |
| 21 | |
| 22 | <dependency> |
| 23 | <groupId>com.h2database</groupId> |
| 24 | <artifactId>h2</artifactId> |
| 25 | <version>1.0.74</version> |
| 26 | </dependency> |
| 27 | </dependencies> |
| 28 | |
| 29 | <build> |
| 30 | <sourceDirectory>src/main/java</sourceDirectory> |
| 31 | <resources> |
| 32 | <resource> |
| 33 | <directory>src/main/resources</directory> |
| 34 | </resource> |
| 35 | <resource> |
| 36 | <directory>src/main/java</directory> |
| 37 | <includes> |
| 38 | <include>**</include> |
| 39 | </includes> |
| 40 | <excludes> |
| 41 | <exclude>**/*.java</exclude> |
| 42 | </excludes> |
| 43 | </resource> |
| 44 | </resources> |
| 45 | <plugins> |
| 46 | <plugin> |
| 47 | <groupId>org.apache.maven.plugins</groupId> |
| 48 | <artifactId>maven-compiler-plugin</artifactId> |
| 49 | <configuration> |
| 50 | <encoding>UTF-8</encoding> |
| 51 | <source>1.5</source> |
| 52 | <target>1.5</target> |
| 53 | </configuration> |
| 54 | </plugin> |
| 55 | <plugin> |
| 56 | <groupId>org.apache.maven.plugins</groupId> |
| 57 | <artifactId>maven-source-plugin</artifactId> |
| 58 | <executions> |
| 59 | <execution> |
| 60 | <id>attach-sources</id> |
| 61 | <phase>verify</phase> |
| 62 | <goals> |
| 63 | <goal>jar</goal> |
| 64 | </goals> |
| 65 | </execution> |
| 66 | </executions> |
| 67 | </plugin> |
| 68 | <plugin> |
| 69 | <groupId>org.apache.maven.plugins</groupId> |
| 70 | <artifactId>maven-javadoc-plugin</artifactId> |
| 71 | <configuration> |
| 72 | <source>1.5</source> |
| 73 | <encoding>UTF-8</encoding> |
| 74 | <docencoding>UTF-8</docencoding> |
| 75 | <charset>UTF-8</charset> |
| 76 | <links> |
| 77 | <link>http://java.sun.com/j2se/1.5.0/ja/docs/ja/api/</link> |
| 78 | </links> |
| 79 | </configuration> |
| 80 | <executions> |
| 81 | <execution> |
| 82 | <id>attach-javadocs</id> |
| 83 | <phase>verify</phase> |
| 84 | <goals> |
| 85 | <goal>jar</goal> |
| 86 | </goals> |
| 87 | </execution> |
| 88 | </executions> |
| 89 | </plugin> |
| 90 | </plugins> |
| 91 | </build> |
| 92 | |
| 93 | <repositories> |
| 94 | <repository> |
| 95 | <id>maven.seasar.org</id> |
| 96 | <name>The Seasar Foundation Maven2 Repository</name> |
| 97 | <url>http://maven.seasar.org/maven2</url> |
| 98 | </repository> |
| 99 | </repositories> |
| 100 | |
| 101 | <name>Karatachi SAWicket Example</name> |
| 102 | <description /> |
| 103 | |
| 104 | <scm> |
| 105 | <developerConnection>scm:svn:https://repo.karatachi.org/svn</developerConnection> |
| 106 | <url>http://karatachi.org/</url> |
| 107 | </scm> |
| 108 | <distributionManagement> |
| 109 | <repository> |
| 110 | <id>karatachi-repository</id> |
| 111 | <name>Karatachi Project Repository</name> |
| 112 | <url>dav:https://repo.karatachi.org/mvn</url> |
| 113 | </repository> |
| 114 | </distributionManagement> |
| 115 | </project> |
Properties
| Name | Value |
|---|---|
| svn:mime-type | text/plain |
| Repository Top ViewVC Help |
![]() |
| Powered by ViewVC |

