pom.xml 3.6 KB

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