|
@@ -5,13 +5,12 @@
|
|
|
<artifactId>hellowicket</artifactId>
|
|
|
<packaging>war</packaging>
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
- <!-- TODO project name -->
|
|
|
- <name>quickstart</name>
|
|
|
- <description></description>
|
|
|
- <!--
|
|
|
- TODO <organization> <name>company name</name> <url>company url</url>
|
|
|
- </organization>
|
|
|
- -->
|
|
|
+ <name>Hello Wicket</name>
|
|
|
+ <description>Wicket project for the TechEmpower Benchmark</description>
|
|
|
+ <organization>
|
|
|
+ <name>TechEmpower</name>
|
|
|
+ <url>https://github.com/TechEmpower/FrameworkBenchmarks</url>
|
|
|
+ </organization>
|
|
|
<licenses>
|
|
|
<license>
|
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
@@ -21,12 +20,12 @@
|
|
|
</licenses>
|
|
|
<properties>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
- <wicket.version>6.16.0</wicket.version>
|
|
|
- <jetty.version>8.1.14.v20131031</jetty.version>
|
|
|
- <slf4j.version>1.7.7</slf4j.version>
|
|
|
+ <wicket.version>7.1.0</wicket.version>
|
|
|
+ <jetty.version>8.1.18.v20150929</jetty.version>
|
|
|
+ <slf4j.version>1.7.12</slf4j.version>
|
|
|
</properties>
|
|
|
<dependencies>
|
|
|
- <!-- WICKET DEPENDENCIES -->
|
|
|
+ <!-- WICKET DEPENDENCIES -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.wicket</groupId>
|
|
|
<artifactId>wicket-core</artifactId>
|
|
@@ -37,7 +36,7 @@
|
|
|
<dependency>
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
- <version>1.4.0</version>
|
|
|
+ <version>2.4.3</version>
|
|
|
<scope>compile</scope>
|
|
|
</dependency>
|
|
|
|
|
@@ -53,32 +52,32 @@
|
|
|
<version>1.2.17</version>
|
|
|
</dependency>
|
|
|
|
|
|
- <!-- JUNIT DEPENDENCY FOR TESTING -->
|
|
|
+ <!-- JUNIT DEPENDENCY FOR TESTING -->
|
|
|
<dependency>
|
|
|
<groupId>junit</groupId>
|
|
|
<artifactId>junit</artifactId>
|
|
|
- <version>4.11</version>
|
|
|
+ <version>4.12</version>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
|
|
|
- <!-- JETTY DEPENDENCIES FOR TESTING -->
|
|
|
+ <!-- JETTY DEPENDENCIES FOR TESTING -->
|
|
|
<dependency>
|
|
|
<groupId>org.eclipse.jetty.aggregate</groupId>
|
|
|
<artifactId>jetty-all-server</artifactId>
|
|
|
<version>${jetty.version}</version>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
- <version>2.3.2</version>
|
|
|
+ <version>2.7.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
- <groupId>mysql</groupId>
|
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
|
- <version>5.1.31</version>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ <version>5.1.38</version>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
<build>
|
|
@@ -137,13 +136,9 @@
|
|
|
<port>8080</port>
|
|
|
<maxIdleTime>3600000</maxIdleTime>
|
|
|
</connector>
|
|
|
- <!--connector implementation="org.eclipse.jetty.server.ssl.SslSocketConnector">
|
|
|
- <port>8443</port>
|
|
|
- <maxIdleTime>3600000</maxIdleTime>
|
|
|
- <keystore>${project.build.directory}/test-classes/keystore</keystore>
|
|
|
- <password>wicket</password>
|
|
|
- <keyPassword>wicket</keyPassword>
|
|
|
- </connector-->
|
|
|
+ <!--connector implementation="org.eclipse.jetty.server.ssl.SslSocketConnector">
|
|
|
+ <port>8443</port> <maxIdleTime>3600000</maxIdleTime> <keystore>${project.build.directory}/test-classes/keystore</keystore>
|
|
|
+ <password>wicket</password> <keyPassword>wicket</keyPassword> </connector -->
|
|
|
</connectors>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
@@ -162,5 +157,4 @@
|
|
|
</snapshots>
|
|
|
</repository>
|
|
|
</repositories>
|
|
|
-
|
|
|
- </project>
|
|
|
+</project>
|