Skip to content

Commit 55aa783

Browse files
committed
update deps
1 parent 43a460f commit 55aa783

1 file changed

Lines changed: 37 additions & 1 deletion

File tree

pom.xml

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,46 @@
44

55
<groupId>it.aboutbits</groupId>
66
<artifactId>java-checkstyle-config</artifactId>
7-
<version>2.0.0-RC2</version>
7+
<version>BUILD-SNAPSHOT</version>
88
<description>Checkstyle config for all JAVA projects.</description>
99
<packaging>jar</packaging>
1010

11+
<properties>
12+
<maven.compiler.source>25</maven.compiler.source>
13+
<maven.compiler.target>25</maven.compiler.target>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
<checkstyle.version>13.4.2</checkstyle.version>
16+
<junit.version>6.0.3</junit.version>
17+
</properties>
18+
19+
<dependencies>
20+
<dependency>
21+
<groupId>com.puppycrawl.tools</groupId>
22+
<artifactId>checkstyle</artifactId>
23+
<version>${checkstyle.version}</version>
24+
<scope>provided</scope>
25+
</dependency>
26+
<dependency>
27+
<groupId>org.junit.jupiter</groupId>
28+
<artifactId>junit-jupiter</artifactId>
29+
<version>${junit.version}</version>
30+
<scope>test</scope>
31+
</dependency>
32+
</dependencies>
33+
34+
<build>
35+
<plugins>
36+
<plugin>
37+
<artifactId>maven-compiler-plugin</artifactId>
38+
<version>3.15.0</version>
39+
</plugin>
40+
<plugin>
41+
<artifactId>maven-surefire-plugin</artifactId>
42+
<version>3.5.5</version>
43+
</plugin>
44+
</plugins>
45+
</build>
46+
1147
<distributionManagement>
1248
<repository>
1349
<id>github</id>

0 commit comments

Comments
 (0)