mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2024-11-22 02:25:41 +01:00
Merge pull request #2995 from Multiverse/dtm/no_gradle_checkstyle
Remove checkstyle from gradle.
This commit is contained in:
commit
ff88b30959
4
.github/workflows/generic.github_release.yml
vendored
4
.github/workflows/generic.github_release.yml
vendored
@ -59,7 +59,7 @@ jobs:
|
|||||||
- name: Build and test
|
- name: Build and test
|
||||||
uses: gradle/gradle-build-action@v2
|
uses: gradle/gradle-build-action@v2
|
||||||
with:
|
with:
|
||||||
arguments: clean build -x assemble -x shadowJar -x checkStyleMain -x checkStyleTest
|
arguments: clean build -x assemble -x shadowJar
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
@ -76,7 +76,7 @@ jobs:
|
|||||||
if: steps.release.outputs.release_created == 'true'
|
if: steps.release.outputs.release_created == 'true'
|
||||||
uses: gradle/gradle-build-action@v2
|
uses: gradle/gradle-build-action@v2
|
||||||
with:
|
with:
|
||||||
arguments: publish -x checkStyleMain -x checkStyleTest -x test
|
arguments: publish -x test
|
||||||
env:
|
env:
|
||||||
GITHUB_VERSION: ${{ steps.release.outputs.publish_version }}
|
GITHUB_VERSION: ${{ steps.release.outputs.publish_version }}
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
@ -3,7 +3,6 @@ import org.apache.tools.ant.filters.ReplaceTokens
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java-library'
|
id 'java-library'
|
||||||
id 'maven-publish'
|
id 'maven-publish'
|
||||||
id 'checkstyle'
|
|
||||||
id 'com.github.johnrengelman.shadow' version '7.1.2'
|
id 'com.github.johnrengelman.shadow' version '7.1.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -160,13 +159,6 @@ processResources {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
checkstyle {
|
|
||||||
toolVersion = '10.12.2'
|
|
||||||
configFile file('config/mv_checks.xml')
|
|
||||||
ignoreFailures = true
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
javadoc {
|
javadoc {
|
||||||
source = sourceSets.main.allJava
|
source = sourceSets.main.allJava
|
||||||
classpath = configurations.compileClasspath
|
classpath = configurations.compileClasspath
|
||||||
|
Loading…
Reference in New Issue
Block a user