1 |
<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"> |
2 |
<modelVersion>4.0.0</modelVersion> |
3 |
|
4 |
<parent> |
5 |
<groupId>org.wicketstuff</groupId> |
6 |
<artifactId>wicket-extjs-parent</artifactId> |
7 |
<version>0.14-SNAPSHOT</version> |
8 |
</parent> |
9 |
|
10 |
<groupId>org.wicketstuff</groupId> |
11 |
<artifactId>wicket-extjs-examples</artifactId> |
12 |
<version>0.14-SNAPSHOT</version> |
13 |
<name>Wicket ExtJS Integration - Examples</name> |
14 |
<description /> |
15 |
<packaging>war</packaging> |
16 |
|
17 |
<!-- |
18 |
TODO <organization> <name>company name</name> <url>company url</url> |
19 |
</organization> |
20 |
--> |
21 |
<licenses> |
22 |
<license> |
23 |
<name>The Apache Software License, Version 2.0</name> |
24 |
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
25 |
<distribution>repo</distribution> |
26 |
</license> |
27 |
</licenses> |
28 |
|
29 |
<properties> |
30 |
<wicket.version>1.4.12</wicket.version> |
31 |
<jetty.version>6.1.4</jetty.version> |
32 |
</properties> |
33 |
|
34 |
<dependencies> |
35 |
<!-- WICKET DEPENDENCIES --> |
36 |
<dependency> |
37 |
<groupId>org.apache.wicket</groupId> |
38 |
<artifactId>wicket</artifactId> |
39 |
<version>${wicket.version}</version> |
40 |
</dependency> |
41 |
<!-- |
42 |
OPTIONAL <dependency> <groupId>org.apache.wicket</groupId> |
43 |
<artifactId>wicket-extensions</artifactId> |
44 |
<version>${wicket.version}</version> </dependency> |
45 |
--> |
46 |
|
47 |
<!-- LOGGING DEPENDENCIES - LOG4J --> |
48 |
<dependency> |
49 |
<groupId>org.slf4j</groupId> |
50 |
<artifactId>slf4j-log4j12</artifactId> |
51 |
<version>1.4.2</version> |
52 |
</dependency> |
53 |
<dependency> |
54 |
<groupId>log4j</groupId> |
55 |
<artifactId>log4j</artifactId> |
56 |
<version>1.2.14</version> |
57 |
</dependency> |
58 |
|
59 |
<!-- JUNIT DEPENDENCY FOR TESTING --> |
60 |
<dependency> |
61 |
<groupId>junit</groupId> |
62 |
<artifactId>junit</artifactId> |
63 |
<version>3.8.2</version> |
64 |
<scope>test</scope> |
65 |
</dependency> |
66 |
|
67 |
<!-- JETTY DEPENDENCIES FOR TESTING --> |
68 |
<dependency> |
69 |
<groupId>org.mortbay.jetty</groupId> |
70 |
<artifactId>jetty</artifactId> |
71 |
<version>${jetty.version}</version> |
72 |
<scope>provided</scope> |
73 |
</dependency> |
74 |
<dependency> |
75 |
<groupId>org.mortbay.jetty</groupId> |
76 |
<artifactId>jetty-util</artifactId> |
77 |
<version>${jetty.version}</version> |
78 |
<scope>provided</scope> |
79 |
</dependency> |
80 |
<dependency> |
81 |
<groupId>org.mortbay.jetty</groupId> |
82 |
<artifactId>jetty-management</artifactId> |
83 |
<version>${jetty.version}</version> |
84 |
<scope>provided</scope> |
85 |
</dependency> |
86 |
|
87 |
<dependency> |
88 |
<groupId>org.wicketstuff</groupId> |
89 |
<artifactId>wicket-extjs</artifactId> |
90 |
<version>0.14-SNAPSHOT</version> |
91 |
</dependency> |
92 |
</dependencies> |
93 |
<build> |
94 |
<resources> |
95 |
<resource> |
96 |
<filtering>false</filtering> |
97 |
<directory>src/main/resources</directory> |
98 |
</resource> |
99 |
<resource> |
100 |
<filtering>false</filtering> |
101 |
<directory>src/main/java</directory> |
102 |
<includes> |
103 |
<include>**</include> |
104 |
</includes> |
105 |
<excludes> |
106 |
<exclude>**/*.java</exclude> |
107 |
</excludes> |
108 |
</resource> |
109 |
</resources> |
110 |
<testResources> |
111 |
<testResource> |
112 |
<filtering>false</filtering> |
113 |
<directory>src/test/java</directory> |
114 |
<includes> |
115 |
<include>**</include> |
116 |
</includes> |
117 |
<excludes> |
118 |
<exclude>**/*.java</exclude> |
119 |
</excludes> |
120 |
</testResource> |
121 |
</testResources> |
122 |
<plugins> |
123 |
<plugin> |
124 |
<inherited>true</inherited> |
125 |
<groupId>org.apache.maven.plugins</groupId> |
126 |
<artifactId>maven-compiler-plugin</artifactId> |
127 |
<version>2.3.1</version> |
128 |
<configuration> |
129 |
<source>1.6</source> |
130 |
<target>1.6</target> |
131 |
<optimize>true</optimize> |
132 |
<debug>true</debug> |
133 |
</configuration> |
134 |
</plugin> |
135 |
<plugin> |
136 |
<groupId>org.mortbay.jetty</groupId> |
137 |
<artifactId>maven-jetty-plugin</artifactId> |
138 |
<version>6.1.25</version> |
139 |
<configuration> |
140 |
<scanIntervalSeconds>0</scanIntervalSeconds> |
141 |
<connectors> |
142 |
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> |
143 |
<port>8080</port> |
144 |
</connector> |
145 |
</connectors> |
146 |
</configuration> |
147 |
</plugin> |
148 |
<plugin> |
149 |
<groupId>org.apache.maven.plugins</groupId> |
150 |
<artifactId>maven-eclipse-plugin</artifactId> |
151 |
<version>2.8</version> |
152 |
<configuration> |
153 |
<downloadSources>true</downloadSources> |
154 |
</configuration> |
155 |
</plugin> |
156 |
</plugins> |
157 |
</build> |
158 |
<reporting> |
159 |
<plugins> |
160 |
<plugin> |
161 |
<groupId>org.codehaus.mojo</groupId> |
162 |
<artifactId>jxr-maven-plugin</artifactId> |
163 |
<version>2.0-beta-1</version> |
164 |
</plugin> |
165 |
</plugins> |
166 |
</reporting> |
167 |
</project> |