137 lines
4.2 KiB
XML
137 lines
4.2 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<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>com.baeldung.wicket.examples</groupId>
|
||
|
<artifactId>wicket-intro</artifactId>
|
||
|
<packaging>war</packaging>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<name>WicketIntro</name>
|
||
|
<properties>
|
||
|
<wicket.version>7.4.0</wicket.version>
|
||
|
<jetty9.version>9.2.13.v20150730</jetty9.version>
|
||
|
<log4j.version>2.5</log4j.version>
|
||
|
<junit.version>4.12</junit.version>
|
||
|
<spring-web.version>4.1.1.RELEASE</spring-web.version>
|
||
|
<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
|
||
|
<wicket-spring.version>8.0.0-M1</wicket-spring.version>
|
||
|
<maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version>
|
||
|
<maven-war-plugin.version>2.6</maven-war-plugin.version>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<wtp.version>none</wtp.version>
|
||
|
</properties>
|
||
|
<dependencies>
|
||
|
<!-- WICKET DEPENDENCIES -->
|
||
|
<dependency>
|
||
|
<groupId>org.apache.wicket</groupId>
|
||
|
<artifactId>wicket-core</artifactId>
|
||
|
<version>${wicket.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- SPRING DEPENDENCIES -->
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework</groupId>
|
||
|
<artifactId>spring-web</artifactId>
|
||
|
<version>${spring-web.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>javax.servlet</groupId>
|
||
|
<artifactId>javax.servlet-api</artifactId>
|
||
|
<version>${javax.servlet-api.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.wicket</groupId>
|
||
|
<artifactId>wicket-spring</artifactId>
|
||
|
<version>${wicket-spring.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- JUNIT DEPENDENCY FOR TESTING -->
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>${junit.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- JETTY DEPENDENCIES FOR TESTING -->
|
||
|
<dependency>
|
||
|
<groupId>org.eclipse.jetty.aggregate</groupId>
|
||
|
<artifactId>jetty-all</artifactId>
|
||
|
<version>${jetty9.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<finalName>WicketIntro</finalName>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<filtering>false</filtering>
|
||
|
<directory>src/main/resources</directory>
|
||
|
</resource>
|
||
|
<resource>
|
||
|
<filtering>false</filtering>
|
||
|
<directory>src/main/java</directory>
|
||
|
<includes>
|
||
|
<include>**</include>
|
||
|
</includes>
|
||
|
<excludes>
|
||
|
<exclude>**/*.java</exclude>
|
||
|
</excludes>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<inherited>true</inherited>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>${maven-compiler-plugin.version}</version>
|
||
|
<configuration>
|
||
|
<source>1.8</source>
|
||
|
<target>1.8</target>
|
||
|
<encoding>UTF-8</encoding>
|
||
|
<showWarnings>true</showWarnings>
|
||
|
<showDeprecation>true</showDeprecation>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-war-plugin</artifactId>
|
||
|
<version>${maven-war-plugin.version}</version>
|
||
|
<configuration>
|
||
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.eclipse.jetty</groupId>
|
||
|
<artifactId>jetty-maven-plugin</artifactId>
|
||
|
<version>${jetty9.version}</version>
|
||
|
<configuration>
|
||
|
<systemProperties>
|
||
|
<systemProperty>
|
||
|
<name>maven.project.build.directory.test-classes</name>
|
||
|
<value>${project.build.directory}/test-classes</value>
|
||
|
</systemProperty>
|
||
|
</systemProperties>
|
||
|
<jettyXml>${project.basedir}/src/test/jetty/jetty.xml,${project.basedir}/src/test/jetty/jetty-ssl.xml,${project.basedir}/src/test/jetty/jetty-http.xml,${project.basedir}/src/test/jetty/jetty-https.xml</jettyXml>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>Apache Nexus</id>
|
||
|
<url>https://repository.apache.org/content/repositories/snapshots/</url>
|
||
|
<releases>
|
||
|
<enabled>false</enabled>
|
||
|
</releases>
|
||
|
<snapshots>
|
||
|
<enabled>true</enabled>
|
||
|
</snapshots>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
</project>
|