Skip to content

Commit

Permalink
Merge pull request #2995 from Multiverse/dtm/no_gradle_checkstyle
Browse files Browse the repository at this point in the history
Remove checkstyle from gradle.
  • Loading branch information
benwoo1110 committed Sep 7, 2023
2 parents 5f9a002 + fa6a01d commit ff88b30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/generic.github_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Build and test
uses: gradle/gradle-build-action@v2
with:
arguments: clean build -x assemble -x shadowJar -x checkStyleMain -x checkStyleTest
arguments: clean build -x assemble -x shadowJar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -76,7 +76,7 @@ jobs:
if: steps.release.outputs.release_created == 'true'
uses: gradle/gradle-build-action@v2
with:
arguments: publish -x checkStyleMain -x checkStyleTest -x test
arguments: publish -x test
env:
GITHUB_VERSION: ${{ steps.release.outputs.publish_version }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
8 changes: 0 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import org.apache.tools.ant.filters.ReplaceTokens
plugins {
id 'java-library'
id 'maven-publish'
id 'checkstyle'
id 'com.github.johnrengelman.shadow' version '7.1.2'
}

Expand Down Expand Up @@ -160,13 +159,6 @@ processResources {
}


checkstyle {
toolVersion = '10.12.2'
configFile file('config/mv_checks.xml')
ignoreFailures = true
}


javadoc {
source = sourceSets.main.allJava
classpath = configurations.compileClasspath
Expand Down

0 comments on commit ff88b30

Please sign in to comment.