Skip to content
This repository was archived by the owner on Dec 4, 2024. It is now read-only.

Commit aa9c725

Browse files
committed
Fix ci build
1 parent 080c0a4 commit aa9c725

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,28 @@
6464
</dependencies>
6565

6666
<build>
67+
<pluginManagement>
68+
<plugins>
69+
<plugin>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-checkstyle-plugin</artifactId>
72+
<version>3.1.2</version>
73+
<dependencies>
74+
<dependency>
75+
<groupId>com.puppycrawl.tools</groupId>
76+
<artifactId>checkstyle</artifactId>
77+
<version>9.2</version>
78+
</dependency>
79+
<dependency>
80+
<groupId>org.apache.maven.shared</groupId>
81+
<artifactId>maven-shared-resources</artifactId>
82+
<version>4</version>
83+
</dependency>
84+
</dependencies>
85+
</plugin>
86+
</plugins>
87+
</pluginManagement>
88+
6789
<plugins>
6890
<plugin>
6991
<groupId>org.apache.maven.plugins</groupId>

src/main/java/org/codehaus/plexus/tools/cli/AbstractCli.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@
3939

4040
/**
4141
* @author jason van zyl
42-
* @version $Id$
43-
* @noinspection UseOfSystemOutOrSystemErr,ACCESS_STATIC_VIA_INSTANCE
4442
*/
4543
public abstract class AbstractCli
4644
implements Cli

0 commit comments

Comments
 (0)