|
1 | 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.19.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> |
| 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 | + <maven.compiler.source>17</maven.compiler.source> |
| 23 | + <maven.compiler.target>17</maven.compiler.target> |
| 24 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 25 | + <jackson.version>2.13.0</jackson.version> |
| 26 | + <slf4j.version>1.7.25</slf4j.version> |
| 27 | + <wicket.version>9.19.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 | 36 |
|
37 |
| - <!-- a faster DataSource --> |
38 |
| - <dependency> |
39 |
| - <groupId>com.zaxxer</groupId> |
40 |
| - <artifactId>HikariCP</artifactId> |
41 |
| - <version>5.0.0</version> |
42 |
| - <scope>compile</scope> |
43 |
| - </dependency> |
| 37 | + <!-- a faster DataSource --> |
| 38 | + <dependency> |
| 39 | + <groupId>com.zaxxer</groupId> |
| 40 | + <artifactId>HikariCP</artifactId> |
| 41 | + <version>5.0.0</version> |
| 42 | + <scope>compile</scope> |
| 43 | + </dependency> |
44 | 44 |
|
45 |
| - <!-- LOGGING DEPENDENCIES - LOG4J --> |
46 |
| - <dependency> |
47 |
| - <groupId>org.slf4j</groupId> |
48 |
| - <artifactId>slf4j-simple</artifactId> |
49 |
| - <version>${slf4j.version}</version> |
50 |
| - </dependency> |
| 45 | + <!-- LOGGING DEPENDENCIES - LOG4J --> |
| 46 | + <dependency> |
| 47 | + <groupId>org.slf4j</groupId> |
| 48 | + <artifactId>slf4j-simple</artifactId> |
| 49 | + <version>${slf4j.version}</version> |
| 50 | + </dependency> |
51 | 51 |
|
52 |
| - <dependency> |
53 |
| - <groupId>com.fasterxml.jackson.module</groupId> |
54 |
| - <artifactId>jackson-module-afterburner</artifactId> |
55 |
| - <version>${jackson.version}</version> |
56 |
| - </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>com.fasterxml.jackson.module</groupId> |
| 54 | + <artifactId>jackson-module-afterburner</artifactId> |
| 55 | + <version>${jackson.version}</version> |
| 56 | + </dependency> |
57 | 57 |
|
58 |
| - <dependency> |
59 |
| - <groupId>com.fasterxml.jackson.core</groupId> |
60 |
| - <artifactId>jackson-annotations</artifactId> |
61 |
| - <version>${jackson.version}</version> |
62 |
| - </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 60 | + <artifactId>jackson-annotations</artifactId> |
| 61 | + <version>${jackson.version}</version> |
| 62 | + </dependency> |
63 | 63 |
|
64 |
| - <dependency> |
65 |
| - <groupId>mysql</groupId> |
66 |
| - <artifactId>mysql-connector-java</artifactId> |
67 |
| - <version>8.0.28</version> |
68 |
| - </dependency> |
69 |
| - </dependencies> |
70 |
| - <build> |
71 |
| - <resources> |
72 |
| - <resource> |
73 |
| - <filtering>false</filtering> |
74 |
| - <directory>src/main/resources</directory> |
75 |
| - </resource> |
76 |
| - <resource> |
77 |
| - <filtering>false</filtering> |
78 |
| - <directory>src/main/java</directory> |
79 |
| - <includes> |
80 |
| - <include>**</include> |
81 |
| - </includes> |
82 |
| - <excludes> |
83 |
| - <exclude>**/*.java</exclude> |
84 |
| - </excludes> |
85 |
| - </resource> |
86 |
| - </resources> |
87 |
| - <testResources> |
88 |
| - <testResource> |
89 |
| - <filtering>false</filtering> |
90 |
| - <directory>src/test/resources</directory> |
91 |
| - </testResource> |
92 |
| - <testResource> |
93 |
| - <filtering>false</filtering> |
94 |
| - <directory>src/test/java</directory> |
95 |
| - <includes> |
96 |
| - <include>**</include> |
97 |
| - </includes> |
98 |
| - <excludes> |
99 |
| - <exclude>**/*.java</exclude> |
100 |
| - </excludes> |
101 |
| - </testResource> |
102 |
| - </testResources> |
103 |
| - <plugins> |
104 |
| - <plugin> |
105 |
| - <inherited>true</inherited> |
106 |
| - <groupId>org.apache.maven.plugins</groupId> |
107 |
| - <artifactId>maven-compiler-plugin</artifactId> |
108 |
| - <version>3.8.1</version> |
109 |
| - <configuration> |
110 |
| - <debug>false</debug> |
111 |
| - </configuration> |
112 |
| - </plugin> |
113 |
| - </plugins> |
114 |
| - </build> |
| 64 | + <dependency> |
| 65 | + <groupId>mysql</groupId> |
| 66 | + <artifactId>mysql-connector-java</artifactId> |
| 67 | + <version>8.0.28</version> |
| 68 | + </dependency> |
| 69 | + </dependencies> |
| 70 | + <build> |
| 71 | + <resources> |
| 72 | + <resource> |
| 73 | + <filtering>false</filtering> |
| 74 | + <directory>src/main/resources</directory> |
| 75 | + </resource> |
| 76 | + <resource> |
| 77 | + <filtering>false</filtering> |
| 78 | + <directory>src/main/java</directory> |
| 79 | + <includes> |
| 80 | + <include>**</include> |
| 81 | + </includes> |
| 82 | + <excludes> |
| 83 | + <exclude>**/*.java</exclude> |
| 84 | + </excludes> |
| 85 | + </resource> |
| 86 | + </resources> |
| 87 | + <testResources> |
| 88 | + <testResource> |
| 89 | + <filtering>false</filtering> |
| 90 | + <directory>src/test/resources</directory> |
| 91 | + </testResource> |
| 92 | + <testResource> |
| 93 | + <filtering>false</filtering> |
| 94 | + <directory>src/test/java</directory> |
| 95 | + <includes> |
| 96 | + <include>**</include> |
| 97 | + </includes> |
| 98 | + <excludes> |
| 99 | + <exclude>**/*.java</exclude> |
| 100 | + </excludes> |
| 101 | + </testResource> |
| 102 | + </testResources> |
| 103 | + <plugins> |
| 104 | + <plugin> |
| 105 | + <inherited>true</inherited> |
| 106 | + <groupId>org.apache.maven.plugins</groupId> |
| 107 | + <artifactId>maven-compiler-plugin</artifactId> |
| 108 | + <version>3.8.1</version> |
| 109 | + <configuration> |
| 110 | + <debug>false</debug> |
| 111 | + </configuration> |
| 112 | + </plugin> |
| 113 | + </plugins> |
| 114 | + </build> |
115 | 115 |
|
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> |
| 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 | 128 | </project>
|
0 commit comments