-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
90 lines (81 loc) · 2.79 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.wicketstuff</groupId>
<artifactId>wicket-extjs-parent</artifactId>
<version>0.25-SNAPSHOT</version>
<name>Wicket ExtJS Integration - parent</name>
<description />
<packaging>pom</packaging>
<properties>
<!-- use UTF-8 encoding for filtered file copy -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.plugin.resources.version>2.6</maven.plugin.resources.version>
<wicket.version>6.8.0</wicket.version>
<jetty.version>6.1.25</jetty.version>
</properties>
<!--
TODO <organization> <name>company name</name> <url>company url</url>
</organization>
-->
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<inceptionYear>2010</inceptionYear>
<modules>
<module>bundle</module>
<module>core</module>
<module>examples</module>
</modules>
<scm>
<connection>scm:git:[email protected]:fvlankvelt/wicket-extjs-integration.git</connection>
<developerConnection>scm:git:[email protected]:fvlankvelt/wicket-extjs-integration.git</developerConnection>
<url>http://github.com/fvlankvelt/wicket-extjs-integration</url>
</scm>
<build>
<extensions>
<!-- Enabling the use of FTP -->
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
<version>1.0-beta-6</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven.plugin.resources.version}</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<inherited>true</inherited>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<inherited>true</inherited>
</plugin>
</plugins>
</build>
</project>