|
87 | 87 | <updatePolicy>always</updatePolicy>
|
88 | 88 | </snapshots>
|
89 | 89 | </pluginRepository>
|
90 |
| - <pluginRepository> |
91 |
| - <id>checkstyle-backport-jre8-maven</id> |
92 |
| - <name>checkstyle-backport-jre8-maven</name> |
93 |
| - <url>http://rnveach.github.io/checkstyle-backport-jre8/maven2</url> |
94 |
| - </pluginRepository> |
95 | 90 | </pluginRepositories>
|
96 | 91 | <properties>
|
| 92 | + <maven-minimum.version>3.0</maven-minimum.version> |
97 | 93 | <b3dgs.version>2.0.0-SNAPSHOT</b3dgs.version>
|
98 |
| - <sonar-branch>b3dgs</sonar-branch> |
99 |
| - <radial.base-package>com.b3dgs</radial.base-package> |
100 | 94 | <jdk.version>1.8</jdk.version>
|
101 |
| - <jdk-toolchain.version>8</jdk-toolchain.version> |
102 |
| - <maven-minimum.version>3.0</maven-minimum.version> |
| 95 | + <jdk-release.version>8</jdk-release.version> |
103 | 96 | <encoding.type>UTF-8</encoding.type>
|
| 97 | + <slf4j.version>2.0.9</slf4j.version> |
104 | 98 | <jna.version>5.0.0</jna.version>
|
105 | 99 | <tycho.version>4.0.4</tycho.version>
|
106 | 100 | <junit.version>5.10.1</junit.version>
|
|
130 | 124 | <maven-enforcer-plugin.version>3.4.1</maven-enforcer-plugin.version>
|
131 | 125 | <sonar-maven-plugin.version>3.10.0.2594</sonar-maven-plugin.version>
|
132 | 126 | <radial-encapsulation-maven-plugin.version>1.0.1</radial-encapsulation-maven-plugin.version>
|
133 |
| - <maven.compiler.source>${jdk.version}</maven.compiler.source> |
134 |
| - <maven.compiler.target>${jdk.version}</maven.compiler.target> |
| 127 | + <maven.compiler.release>${jdk-release.version}</maven.compiler.release> |
135 | 128 | <maven.resources.overwrite>false</maven.resources.overwrite>
|
136 | 129 | <buildtools-project>b3dgs-parent</buildtools-project>
|
| 130 | + <sonar-branch>b3dgs</sonar-branch> |
| 131 | + <radial.base-package>com.b3dgs</radial.base-package> |
137 | 132 | <working.dir>${project.basedir}</working.dir>
|
138 | 133 | <project.build.sourceEncoding>${encoding.type}</project.build.sourceEncoding>
|
139 | 134 | <project.reporting.outputEncoding>${encoding.type}</project.reporting.outputEncoding>
|
140 | 135 | </properties>
|
141 | 136 | <dependencies>
|
| 137 | + <dependency> |
| 138 | + <groupId>org.slf4j</groupId> |
| 139 | + <artifactId>slf4j-api</artifactId> |
| 140 | + <version>${slf4j.version}</version> |
| 141 | + </dependency> |
| 142 | + <dependency> |
| 143 | + <groupId>org.slf4j</groupId> |
| 144 | + <artifactId>slf4j-simple</artifactId> |
| 145 | + <version>${slf4j.version}</version> |
| 146 | + <scope>test</scope> |
| 147 | + </dependency> |
142 | 148 | <dependency>
|
143 | 149 | <groupId>org.junit.jupiter</groupId>
|
144 | 150 | <artifactId>junit-jupiter-api</artifactId>
|
|
226 | 232 | <artifactId>maven-compiler-plugin</artifactId>
|
227 | 233 | <version>${maven-compiler.version}</version>
|
228 | 234 | <configuration>
|
229 |
| - <source>${jdk.version}</source> |
230 |
| - <target>${jdk.version}</target> |
| 235 | + <release>${jdk-release.version}</release> |
231 | 236 | <encoding>${encoding.type}</encoding>
|
232 | 237 | <showDeprecation>true</showDeprecation>
|
233 | 238 | <showWarnings>true</showWarnings>
|
234 | 239 | <fork>true</fork>
|
235 | 240 | </configuration>
|
236 | 241 | </plugin>
|
237 |
| - <plugin> |
238 |
| - <groupId>org.apache.maven.plugins</groupId> |
239 |
| - <artifactId>maven-toolchains-plugin</artifactId> |
240 |
| - <version>${maven-toolchains.version}</version> |
241 |
| - <executions> |
242 |
| - <execution> |
243 |
| - <goals> |
244 |
| - <goal>toolchain</goal> |
245 |
| - </goals> |
246 |
| - </execution> |
247 |
| - </executions> |
248 |
| - <configuration> |
249 |
| - <toolchains> |
250 |
| - <jdk> |
251 |
| - <version>${jdk-toolchain.version}</version> |
252 |
| - </jdk> |
253 |
| - </toolchains> |
254 |
| - </configuration> |
255 |
| - </plugin> |
256 | 242 | <plugin>
|
257 | 243 | <groupId>org.apache.maven.plugins</groupId>
|
258 | 244 | <artifactId>maven-site-plugin</artifactId>
|
|
327 | 313 | <dependencies>
|
328 | 314 | <dependency>
|
329 | 315 | <groupId>com.puppycrawl.tools</groupId>
|
330 |
| - <artifactId>checkstyle-backport-jre8</artifactId> |
| 316 | + <artifactId>checkstyle</artifactId> |
331 | 317 | <version>${checkstyle.version}</version>
|
332 | 318 | </dependency>
|
333 | 319 | <dependency>
|
|
0 commit comments