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-bundle</artifactId> |
12 |
<name>Wicket ExtJS Integration - ExtJS bundle</name> |
13 |
|
14 |
<build> |
15 |
<resources> |
16 |
<resource> |
17 |
<filtering>false</filtering> |
18 |
<directory>src/main/resources</directory> |
19 |
</resource> |
20 |
</resources> |
21 |
<pluginManagement> |
22 |
<plugins> |
23 |
<plugin> |
24 |
<inherited>true</inherited> |
25 |
<groupId>org.apache.maven.plugins</groupId> |
26 |
<artifactId>maven-compiler-plugin</artifactId> |
27 |
<version>2.3.2</version> |
28 |
<configuration> |
29 |
<source>1.6</source> |
30 |
<target>1.6</target> |
31 |
<optimize>true</optimize> |
32 |
<debug>true</debug> |
33 |
</configuration> |
34 |
</plugin> |
35 |
<plugin> |
36 |
<groupId>org.apache.maven.plugins</groupId> |
37 |
<artifactId>maven-eclipse-plugin</artifactId> |
38 |
<version>2.8</version> |
39 |
<configuration> |
40 |
<downloadSources>true</downloadSources> |
41 |
</configuration> |
42 |
</plugin> |
43 |
</plugins> |
44 |
</pluginManagement> |
45 |
</build> |
46 |
|
47 |
</project> |