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.15-SNAPSHOT</version> |
8 |
</parent> |
9 |
|
10 |
<groupId>org.wicketstuff</groupId> |
11 |
<artifactId>wicket-extjs</artifactId> |
12 |
<version>0.15-SNAPSHOT</version> |
13 |
<name>Wicket ExtJS Integration</name> |
14 |
<description /> |
15 |
<!-- |
16 |
TODO <organization> <name>company name</name> <url>company url</url> |
17 |
</organization> |
18 |
--> |
19 |
<licenses> |
20 |
<license> |
21 |
<name>The Apache Software License, Version 2.0</name> |
22 |
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
23 |
<distribution>repo</distribution> |
24 |
</license> |
25 |
</licenses> |
26 |
<repositories> |
27 |
</repositories> |
28 |
|
29 |
<properties> |
30 |
<wicket.version>1.4.19-WICKET-3927</wicket.version> |
31 |
<jetty.version>6.1.25</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 |
<scope>provided</scope> |
41 |
</dependency> |
42 |
<!-- |
43 |
OPTIONAL <dependency> <groupId>org.apache.wicket</groupId> |
44 |
<artifactId>wicket-extensions</artifactId> |
45 |
<version>${wicket.version}</version> </dependency> |
46 |
--> |
47 |
|
48 |
<dependency> |
49 |
<groupId>org.json</groupId> |
50 |
<artifactId>json</artifactId> |
51 |
<version>20090211</version> |
52 |
</dependency> |
53 |
|
54 |
<dependency> |
55 |
<groupId>org.aspectj</groupId> |
56 |
<artifactId>aspectjrt</artifactId> |
57 |
<version>1.6.7</version> |
58 |
</dependency> |
59 |
|
60 |
<!-- LOGGING DEPENDENCIES - LOG4J --> |
61 |
<dependency> |
62 |
<groupId>org.slf4j</groupId> |
63 |
<artifactId>slf4j-log4j12</artifactId> |
64 |
<version>1.4.2</version> |
65 |
<scope>test</scope> |
66 |
</dependency> |
67 |
<dependency> |
68 |
<groupId>log4j</groupId> |
69 |
<artifactId>log4j</artifactId> |
70 |
<version>1.2.14</version> |
71 |
<scope>test</scope> |
72 |
</dependency> |
73 |
<dependency> |
74 |
<groupId>org.wicketstuff</groupId> |
75 |
<artifactId>wicket-extjs-bundle</artifactId> |
76 |
<version>0.15-SNAPSHOT</version> |
77 |
</dependency> |
78 |
|
79 |
<!-- JUNIT DEPENDENCY FOR TESTING --> |
80 |
<dependency> |
81 |
<groupId>junit</groupId> |
82 |
<artifactId>junit</artifactId> |
83 |
<version>4.5</version> |
84 |
<scope>test</scope> |
85 |
</dependency> |
86 |
|
87 |
<dependency> |
88 |
<groupId>net.sourceforge.htmlunit</groupId> |
89 |
<artifactId>htmlunit</artifactId> |
90 |
<version>2.8</version> |
91 |
<scope>test</scope> |
92 |
</dependency> |
93 |
|
94 |
<dependency> |
95 |
<groupId>org.mortbay.jetty</groupId> |
96 |
<artifactId>jetty</artifactId> |
97 |
<version>6.1.22</version> |
98 |
<scope>test</scope> |
99 |
</dependency> |
100 |
|
101 |
</dependencies> |
102 |
<build> |
103 |
<resources> |
104 |
<resource> |
105 |
<filtering>false</filtering> |
106 |
<directory>src/main/resources</directory> |
107 |
</resource> |
108 |
<resource> |
109 |
<filtering>false</filtering> |
110 |
<directory>src/main/java</directory> |
111 |
<includes> |
112 |
<include>**</include> |
113 |
</includes> |
114 |
<excludes> |
115 |
<exclude>**/*.java</exclude> |
116 |
</excludes> |
117 |
</resource> |
118 |
<resource> |
119 |
<filtering>false</filtering> |
120 |
<directory>src/main/aspect</directory> |
121 |
<includes> |
122 |
<include>**</include> |
123 |
</includes> |
124 |
<excludes> |
125 |
<exclude>**/*.aj</exclude> |
126 |
</excludes> |
127 |
</resource> |
128 |
</resources> |
129 |
<testResources> |
130 |
<testResource> |
131 |
<filtering>false</filtering> |
132 |
<directory>src/test/java</directory> |
133 |
<includes> |
134 |
<include>**</include> |
135 |
</includes> |
136 |
<excludes> |
137 |
<exclude>**/*.java</exclude> |
138 |
</excludes> |
139 |
</testResource> |
140 |
</testResources> |
141 |
<plugins> |
142 |
<plugin> |
143 |
<inherited>true</inherited> |
144 |
<groupId>org.apache.maven.plugins</groupId> |
145 |
<artifactId>maven-compiler-plugin</artifactId> |
146 |
<version>2.3.2</version> |
147 |
<configuration> |
148 |
<source>1.6</source> |
149 |
<target>1.6</target> |
150 |
<optimize>true</optimize> |
151 |
<debug>true</debug> |
152 |
</configuration> |
153 |
</plugin> |
154 |
<plugin> |
155 |
<groupId>org.mortbay.jetty</groupId> |
156 |
<artifactId>maven-jetty-plugin</artifactId> |
157 |
<version>6.1.25</version> |
158 |
</plugin> |
159 |
<plugin> |
160 |
<groupId>org.apache.maven.plugins</groupId> |
161 |
<artifactId>maven-eclipse-plugin</artifactId> |
162 |
<version>2.8</version> |
163 |
<configuration> |
164 |
<downloadSources>true</downloadSources> |
165 |
</configuration> |
166 |
</plugin> |
167 |
<plugin> |
168 |
<groupId>org.codehaus.mojo</groupId> |
169 |
<artifactId>aspectj-maven-plugin</artifactId> |
170 |
<version>1.3</version> |
171 |
<configuration> |
172 |
<verbose>true</verbose> |
173 |
<showWeaveInfo>true</showWeaveInfo> |
174 |
<complianceLevel>1.6</complianceLevel> |
175 |
</configuration> |
176 |
<executions> |
177 |
<execution> |
178 |
<goals> |
179 |
<goal>compile</goal> |
180 |
<goal>test-compile</goal> |
181 |
</goals> |
182 |
</execution> |
183 |
</executions> |
184 |
</plugin> |
185 |
</plugins> |
186 |
</build> |
187 |
</project> |