root/lang/java/misc/wicket-sample/pom.xml

Revision 8109, 3.6 kB (checked in by yoshiori, 9 months ago)

lang/java/misc/wicket-sample wicketのサンプル

  • Property svn:mime-type set to text/plain
Line 
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        <groupId>org.yoshiori.wicket.sample</groupId>
5        <artifactId>wicket-sample</artifactId>
6        <packaging>war</packaging>
7        <version>1.0-SNAPSHOT</version>
8        <!-- TODO project name  -->
9        <name>quickstart</name>
10        <description></description>
11
12        <!-- TODO
13                <organization>
14                <name>company name</name>
15                <url>company url</url>
16                </organization>
17        -->
18        <licenses>
19                <license>
20                        <name>The Apache Software License, Version 2.0</name>
21                        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
22                        <distribution>repo</distribution>
23                </license>
24        </licenses>
25        <dependencies>
26                <!--  WICKET DEPENDENCIES -->
27                <dependency>
28                        <groupId>org.apache.wicket</groupId>
29                        <artifactId>wicket</artifactId>
30                        <version>${wicket.version}</version>
31                </dependency>
32                <!-- OPTIONAL
33                        <dependency>
34                        <groupId>org.apache.wicket</groupId>
35                        <artifactId>wicket-extensions</artifactId>
36                        <version>${wicket.version}</version>
37                        </dependency>
38                -->
39
40                <!-- LOGGING DEPENDENCIES - LOG4J -->
41                <dependency>
42                        <groupId>org.slf4j</groupId>
43                        <artifactId>slf4j-log4j12</artifactId>
44                        <version>1.4.2</version>
45                </dependency>
46                <dependency>
47                        <groupId>log4j</groupId>
48                        <artifactId>log4j</artifactId>
49                        <version>1.2.14</version>
50                </dependency>
51
52                <!--  JUNIT DEPENDENCY FOR TESTING -->
53                <dependency>
54                        <groupId>junit</groupId>
55                        <artifactId>junit</artifactId>
56                        <version>3.8.2</version>
57                        <scope>test</scope>
58                </dependency>
59
60                <!--  JETTY DEPENDENCIES FOR TESTING  -->
61                <dependency>
62                        <groupId>org.mortbay.jetty</groupId>
63                        <artifactId>jetty</artifactId>
64                        <version>${jetty.version}</version>
65                        <scope>provided</scope>
66                </dependency>
67                <dependency>
68                        <groupId>org.mortbay.jetty</groupId>
69                        <artifactId>jetty-util</artifactId>
70                        <version>${jetty.version}</version>
71                        <scope>provided</scope>
72                </dependency>
73                <dependency>
74                        <groupId>org.mortbay.jetty</groupId>
75                        <artifactId>jetty-management</artifactId>
76                        <version>${jetty.version}</version>
77                        <scope>provided</scope>
78                </dependency>
79        </dependencies>
80        <build>
81                <resources>
82                        <resource>
83                                <filtering>false</filtering>
84                                <directory>src/main/resources</directory>
85                        </resource>
86                        <resource>
87                                <filtering>false</filtering>
88                                <directory>src/main/java</directory>
89                                <includes>
90                                        <include>**</include>
91                                </includes>
92                                <excludes>
93                                        <exclude>**/*.java</exclude>
94                                </excludes>
95                        </resource>
96                </resources>
97                <testResources>
98                        <testResource>
99                                <filtering>false</filtering>
100                                <directory>src/test/java</directory>
101                                <includes>
102                                        <include>**</include>
103                                </includes>
104                                <excludes>
105                                        <exclude>**/*.java</exclude>
106                                </excludes>
107                        </testResource>
108                </testResources>
109                <plugins>
110                        <plugin>
111                                <groupId>org.mortbay.jetty</groupId>
112                                <artifactId>maven-jetty-plugin</artifactId>
113                        </plugin>
114                        <plugin>
115                                <groupId>org.apache.maven.plugins</groupId>
116                                <artifactId>maven-compiler-plugin</artifactId>
117                                <configuration>
118                                        <source>1.5</source>
119                                        <target>1.5</target>
120                                        <encoding>UTF-8</encoding>
121                                </configuration>
122                        </plugin>
123                        <plugin>
124                                <groupId>org.apache.maven.plugins</groupId>
125                                <artifactId>maven-site-plugin</artifactId>
126                                <configuration>
127                                        <outputEncoding>utf-8</outputEncoding>
128                                        <inputEncoding>utf-8</inputEncoding>
129                                        <locales>ja</locales>
130                                </configuration>
131                        </plugin>
132                </plugins>
133        </build>
134        <properties>
135                <wicket.version>1.3.2</wicket.version>
136                <jetty.version>6.1.4</jetty.version>
137        </properties>
138</project>
Note: See TracBrowser for help on using the browser.