pom.xml 3.4 KB

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