Skip to content

Commit 0c5fd07

Browse files
ahornaceVladimir Kotal
authored andcommitted
Re-enable checkstyle in web module
1 parent dc6f265 commit 0c5fd07

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

.mvn/wrapper/maven-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip
1+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.1/apache-maven-3.6.1-bin.zip

opengrok-web/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,10 @@ Portions Copyright (c) 2018, Chris Fraire <[email protected]>.
200200
</argLine>
201201
</configuration>
202202
</plugin>
203+
<plugin>
204+
<groupId>org.apache.maven.plugins</groupId>
205+
<artifactId>maven-checkstyle-plugin</artifactId>
206+
</plugin>
203207
</plugins>
204208
</build>
205209

pom.xml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -296,14 +296,7 @@ Portions Copyright (c) 2018, Chris Fraire <[email protected]>.
296296
<plugin>
297297
<groupId>org.apache.maven.plugins</groupId>
298298
<artifactId>maven-checkstyle-plugin</artifactId>
299-
<version>3.0.0</version>
300-
<dependencies>
301-
<dependency>
302-
<groupId>com.puppycrawl.tools</groupId>
303-
<artifactId>checkstyle</artifactId>
304-
<version>8.17</version>
305-
</dependency>
306-
</dependencies>
299+
<version>3.1.0</version>
307300
<executions>
308301
<execution>
309302
<id>checkstyle</id>
@@ -315,7 +308,6 @@ Portions Copyright (c) 2018, Chris Fraire <[email protected]>.
315308
<failsOnError>true</failsOnError>
316309
<suppressionsLocation>/dev/checkstyle/suppressions.xml</suppressionsLocation>
317310
<headerLocation>/dev/checkstyle/fileheader.txt</headerLocation>
318-
<sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
319311
</configuration>
320312
<goals>
321313
<goal>check</goal>

0 commit comments

Comments
 (0)