|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 5 | <modelVersion>4.0.0</modelVersion> |
4 | 6 |
|
5 | 7 | <parent> |
6 | 8 | <groupId>org.basepom</groupId> |
7 | 9 | <artifactId>basepom-oss</artifactId> |
8 | | - <version>63</version> |
| 10 | + <version>66</version> |
9 | 11 | </parent> |
10 | 12 |
|
11 | 13 | <groupId>io.github.spannm</groupId> |
|
15 | 17 |
|
16 | 18 | <name>${project.artifactId}</name> |
17 | 19 | <description>Solutions to LeetCode coding problems</description> |
18 | | - <url>https://github.com/${developerId}/${project.artifactId}</url> |
| 20 | + <url>${githubBaseUrl}${project.artifactId}</url> |
19 | 21 | <inceptionYear>2023</inceptionYear> |
20 | 22 |
|
21 | 23 | <licenses> |
|
36 | 38 |
|
37 | 39 | <properties> |
38 | 40 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 41 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
39 | 42 |
|
| 43 | + <!-- The minimum JDK version required to build. --> |
40 | 44 | <project.build.systemJdk>17</project.build.systemJdk> |
| 45 | + <!-- The default build target. --> |
41 | 46 | <project.build.targetJdk>17</project.build.targetJdk> |
42 | 47 |
|
43 | 48 | <developerId>spannm</developerId> |
| 49 | + <githubBaseUrl>https://github.com/${developerId}/</githubBaseUrl> |
44 | 50 |
|
45 | 51 | <dep.plugin.sortpom.version>4.0.0</dep.plugin.sortpom.version> |
46 | 52 |
|
47 | 53 | <dep.javapoet.version>1.13.0</dep.javapoet.version> |
48 | 54 | <dep.slf4j.version>2.0.17</dep.slf4j.version> |
49 | | - <dep.junit.version>5.13.4</dep.junit.version> |
| 55 | + |
| 56 | + <dep.junit.version>6.0.1</dep.junit.version> |
50 | 57 | <dep.assertj.version>3.27.3</dep.assertj.version> |
51 | 58 |
|
52 | 59 | <basepom.check.fail-dependency>false</basepom.check.fail-dependency> |
|
60 | 67 | <basepom.site.skip-deploy>false</basepom.site.skip-deploy> |
61 | 68 | </properties> |
62 | 69 |
|
63 | | - <dependencyManagement> |
64 | | - <dependencies> |
65 | | - <dependency> |
66 | | - <groupId>org.junit</groupId> |
67 | | - <artifactId>junit-bom</artifactId> |
68 | | - <version>${dep.junit.version}</version> |
69 | | - <type>pom</type> |
70 | | - <scope>import</scope> |
71 | | - </dependency> |
72 | | - </dependencies> |
73 | | - </dependencyManagement> |
74 | | - |
75 | 70 | <dependencies> |
76 | 71 |
|
77 | 72 | <dependency> |
|
97 | 92 |
|
98 | 93 | <dependency> |
99 | 94 | <groupId>org.junit.jupiter</groupId> |
100 | | - <artifactId>junit-jupiter-api</artifactId> |
101 | | - <scope>test</scope> |
102 | | - </dependency> |
103 | | - |
104 | | - <dependency> |
105 | | - <groupId>org.junit.jupiter</groupId> |
106 | | - <artifactId>junit-jupiter-params</artifactId> |
107 | | - <scope>test</scope> |
108 | | - </dependency> |
109 | | - |
110 | | - <dependency> |
111 | | - <groupId>org.junit.platform</groupId> |
112 | | - <artifactId>junit-platform-launcher</artifactId> |
113 | | - <scope>test</scope> |
114 | | - </dependency> |
115 | | - |
116 | | - <dependency> |
117 | | - <groupId>org.junit.platform</groupId> |
118 | | - <artifactId>junit-platform-engine</artifactId> |
119 | | - <scope>test</scope> |
120 | | - </dependency> |
121 | | - |
122 | | - <dependency> |
123 | | - <groupId>org.junit.jupiter</groupId> |
124 | | - <artifactId>junit-jupiter-engine</artifactId> |
125 | | - <scope>test</scope> |
126 | | - </dependency> |
127 | | - |
128 | | - <dependency> |
129 | | - <groupId>org.junit.platform</groupId> |
130 | | - <artifactId>junit-platform-commons</artifactId> |
| 95 | + <artifactId>junit-jupiter</artifactId> |
| 96 | + <version>${dep.junit.version}</version> |
131 | 97 | <scope>test</scope> |
132 | 98 | </dependency> |
133 | 99 |
|
|
191 | 157 | <properties> |
192 | 158 | <!-- skip _compiling_ the tests --> |
193 | 159 | <maven.test.skip>true</maven.test.skip> |
194 | | - <!-- skip test execution --> |
| 160 | + <!-- skip execution of tests --> |
195 | 161 | <skipTests>true</skipTests> |
196 | 162 |
|
197 | 163 | <maven.javadoc.skip>true</maven.javadoc.skip> |
|
0 commit comments