pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>hellowicket</groupId>
  5. <artifactId>hellowicket</artifactId>
  6. <packaging>war</packaging>
  7. <version>1.0-SNAPSHOT</version>
  8. <name>Hello Wicket</name>
  9. <description>Wicket project for the TechEmpower Benchmark</description>
  10. <organization>
  11. <name>TechEmpower</name>
  12. <url>https://github.com/TechEmpower/FrameworkBenchmarks</url>
  13. </organization>
  14. <licenses>
  15. <license>
  16. <name>The Apache Software License, Version 2.0</name>
  17. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  18. <distribution>repo</distribution>
  19. </license>
  20. </licenses>
  21. <properties>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <wicket.version>7.1.0</wicket.version>
  24. <jetty.version>8.1.18.v20150929</jetty.version>
  25. <slf4j.version>1.7.12</slf4j.version>
  26. </properties>
  27. <dependencies>
  28. <!-- WICKET DEPENDENCIES -->
  29. <dependency>
  30. <groupId>org.apache.wicket</groupId>
  31. <artifactId>wicket-core</artifactId>
  32. <version>${wicket.version}</version>
  33. </dependency>
  34. <!-- a faster DataSource -->
  35. <dependency>
  36. <groupId>com.zaxxer</groupId>
  37. <artifactId>HikariCP</artifactId>
  38. <version>2.4.3</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. <!-- LOGGING DEPENDENCIES - LOG4J -->
  42. <dependency>
  43. <groupId>org.slf4j</groupId>
  44. <artifactId>slf4j-log4j12</artifactId>
  45. <version>${slf4j.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>log4j</groupId>
  49. <artifactId>log4j</artifactId>
  50. <version>1.2.17</version>
  51. </dependency>
  52. <!-- JUNIT DEPENDENCY FOR TESTING -->
  53. <dependency>
  54. <groupId>junit</groupId>
  55. <artifactId>junit</artifactId>
  56. <version>4.12</version>
  57. <scope>test</scope>
  58. </dependency>
  59. <!-- JETTY DEPENDENCIES FOR TESTING -->
  60. <dependency>
  61. <groupId>org.eclipse.jetty.aggregate</groupId>
  62. <artifactId>jetty-all-server</artifactId>
  63. <version>${jetty.version}</version>
  64. <scope>provided</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.fasterxml.jackson.core</groupId>
  68. <artifactId>jackson-databind</artifactId>
  69. <version>2.7.0</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>mysql</groupId>
  73. <artifactId>mysql-connector-java</artifactId>
  74. <version>5.1.38</version>
  75. </dependency>
  76. </dependencies>
  77. <build>
  78. <resources>
  79. <resource>
  80. <filtering>false</filtering>
  81. <directory>src/main/resources</directory>
  82. </resource>
  83. <resource>
  84. <filtering>false</filtering>
  85. <directory>src/main/java</directory>
  86. <includes>
  87. <include>**</include>
  88. </includes>
  89. <excludes>
  90. <exclude>**/*.java</exclude>
  91. </excludes>
  92. </resource>
  93. </resources>
  94. <testResources>
  95. <testResource>
  96. <filtering>false</filtering>
  97. <directory>src/test/resources</directory>
  98. </testResource>
  99. <testResource>
  100. <filtering>false</filtering>
  101. <directory>src/test/java</directory>
  102. <includes>
  103. <include>**</include>
  104. </includes>
  105. <excludes>
  106. <exclude>**/*.java</exclude>
  107. </excludes>
  108. </testResource>
  109. </testResources>
  110. <plugins>
  111. <plugin>
  112. <inherited>true</inherited>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-compiler-plugin</artifactId>
  115. <version>3.1</version>
  116. <configuration>
  117. <source>1.7</source>
  118. <target>1.7</target>
  119. <optimize>true</optimize>
  120. <debug>false</debug>
  121. </configuration>
  122. </plugin>
  123. <plugin>
  124. <groupId>org.mortbay.jetty</groupId>
  125. <artifactId>jetty-maven-plugin</artifactId>
  126. <version>${jetty.version}</version>
  127. <configuration>
  128. <connectors>
  129. <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
  130. <port>8080</port>
  131. <maxIdleTime>3600000</maxIdleTime>
  132. </connector>
  133. <!--connector implementation="org.eclipse.jetty.server.ssl.SslSocketConnector">
  134. <port>8443</port> <maxIdleTime>3600000</maxIdleTime> <keystore>${project.build.directory}/test-classes/keystore</keystore>
  135. <password>wicket</password> <keyPassword>wicket</keyPassword> </connector -->
  136. </connectors>
  137. </configuration>
  138. </plugin>
  139. </plugins>
  140. </build>
  141. <repositories>
  142. <repository>
  143. <id>Apache Nexus</id>
  144. <url>https://repository.apache.org/content/repositories/snapshots/</url>
  145. <releases>
  146. <enabled>false</enabled>
  147. </releases>
  148. <snapshots>
  149. <enabled>true</enabled>
  150. </snapshots>
  151. </repository>
  152. </repositories>
  153. </project>