File tree Expand file tree Collapse file tree 1 file changed +13
-24
lines changed
Expand file tree Collapse file tree 1 file changed +13
-24
lines changed Original file line number Diff line number Diff line change 1- buildscript {
2- repositories {
3- mavenCentral()
4- maven {
5- url " https://plugins.gradle.org/m2/"
6- }
7- }
8-
9- dependencies {
10- classpath " me.champeau.gradle:jmh-gradle-plugin:0.5.3"
11- classpath ' ru.vyarus:gradle-animalsniffer-plugin:1.5.3'
12- classpath " biz.aQute.bnd:biz.aQute.bnd.gradle:5.3.0"
13- classpath ' com.vanniktech:gradle-maven-publish-plugin:0.17.0'
14- classpath " gradle.plugin.com.hierynomus.gradle.plugins:license-gradle-plugin:0.16.1"
15- }
1+ plugins {
2+ id(" java-library" )
3+ id(" checkstyle" )
4+ id(" eclipse" )
5+ id(" jacoco" )
6+ id(" maven-publish" )
7+ id(" pmd" )
8+ id(" ru.vyarus.animalsniffer" ) version " 1.5.3"
9+ id(" me.champeau.gradle.jmh" ) version " 0.5.3"
10+ id(" com.github.hierynomus.license" ) version " 0.16.1"
11+ id(" biz.aQute.bnd.builder" ) version " 5.3.0"
12+ id(" com.vanniktech.maven.publish" ) version " 0.17.0"
1613}
1714
18- apply plugin : ' java-library'
19- apply plugin : ' eclipse'
20- apply plugin : " me.champeau.gradle.jmh"
21- apply plugin : ' pmd'
22- apply plugin : ' jacoco'
23- apply plugin : ' ru.vyarus.animalsniffer'
24- apply plugin : " com.github.hierynomus.license"
25-
2615sourceCompatibility = JavaVersion . VERSION_1_8
2716targetCompatibility = JavaVersion . VERSION_1_8
2817
@@ -124,7 +113,7 @@ build.dependsOn jacocoTestReport
124113check. dependsOn jacocoTestReport
125114
126115pmd {
127- toolVersion = ' 5.4.2 '
116+ toolVersion = ' 6.21.0 '
128117 ignoreFailures = true
129118 sourceSets = [sourceSets. main]
130119 ruleSets = []
You can’t perform that action at this time.
0 commit comments