pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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</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.5.0</wicket.version>
  24. <slf4j.version>1.7.21</slf4j.version>
  25. </properties>
  26. <dependencies>
  27. <!-- WICKET DEPENDENCIES -->
  28. <dependency>
  29. <groupId>org.apache.wicket</groupId>
  30. <artifactId>wicket-core</artifactId>
  31. <version>${wicket.version}</version>
  32. </dependency>
  33. <!-- a faster DataSource -->
  34. <dependency>
  35. <groupId>com.zaxxer</groupId>
  36. <artifactId>HikariCP</artifactId>
  37. <version>2.5.1</version>
  38. <scope>compile</scope>
  39. </dependency>
  40. <!-- LOGGING DEPENDENCIES - LOG4J -->
  41. <dependency>
  42. <groupId>org.slf4j</groupId>
  43. <artifactId>slf4j-log4j12</artifactId>
  44. <version>${slf4j.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>log4j</groupId>
  48. <artifactId>log4j</artifactId>
  49. <version>1.2.17</version>
  50. </dependency>
  51. <!-- JUNIT DEPENDENCY FOR TESTING -->
  52. <dependency>
  53. <groupId>junit</groupId>
  54. <artifactId>junit</artifactId>
  55. <version>4.12</version>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.fasterxml.jackson.module</groupId>
  60. <artifactId>jackson-module-afterburner</artifactId>
  61. <version>2.8.5</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.fasterxml.jackson.core</groupId>
  65. <artifactId>jackson-annotations</artifactId>
  66. <version>2.8.5</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>mysql</groupId>
  70. <artifactId>mysql-connector-java</artifactId>
  71. <version>6.0.5</version>
  72. </dependency>
  73. </dependencies>
  74. <build>
  75. <resources>
  76. <resource>
  77. <filtering>false</filtering>
  78. <directory>src/main/resources</directory>
  79. </resource>
  80. <resource>
  81. <filtering>false</filtering>
  82. <directory>src/main/java</directory>
  83. <includes>
  84. <include>**</include>
  85. </includes>
  86. <excludes>
  87. <exclude>**/*.java</exclude>
  88. </excludes>
  89. </resource>
  90. </resources>
  91. <testResources>
  92. <testResource>
  93. <filtering>false</filtering>
  94. <directory>src/test/resources</directory>
  95. </testResource>
  96. <testResource>
  97. <filtering>false</filtering>
  98. <directory>src/test/java</directory>
  99. <includes>
  100. <include>**</include>
  101. </includes>
  102. <excludes>
  103. <exclude>**/*.java</exclude>
  104. </excludes>
  105. </testResource>
  106. </testResources>
  107. <plugins>
  108. <plugin>
  109. <inherited>true</inherited>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-compiler-plugin</artifactId>
  112. <version>3.6.0</version>
  113. <configuration>
  114. <source>1.8</source>
  115. <target>1.8</target>
  116. <optimize>true</optimize>
  117. <debug>false</debug>
  118. </configuration>
  119. </plugin>
  120. </plugins>
  121. </build>
  122. <repositories>
  123. <repository>
  124. <id>Apache Nexus</id>
  125. <url>https://repository.apache.org/content/repositories/snapshots/</url>
  126. <releases>
  127. <enabled>false</enabled>
  128. </releases>
  129. <snapshots>
  130. <enabled>true</enabled>
  131. </snapshots>
  132. </repository>
  133. </repositories>
  134. </project>