Skip to content

Commit

Permalink
update dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
siordache committed Mar 3, 2022
1 parent 9370e3c commit 1cbb583
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ buildscript {
}
}
dependencies {
classpath 'org.kohsuke:github-api:1.94'
classpath 'org.kohsuke:github-api:1.133'
}
}

plugins {
id 'java-gradle-plugin'
id 'groovy'
id 'maven-publish'
id 'com.github.johnrengelman.shadow' version '6.0.0'
id "com.gradle.plugin-publish" version "0.11.0"
id 'com.github.johnrengelman.shadow' version '6.1.0'
id "com.gradle.plugin-publish" version "0.16.0"
id "com.github.ethankhall.semantic-versioning" version "1.1.0"
id "com.github.ben-manes.versions" version "0.20.0"
id 'com.github.jk1.dependency-license-report' version '1.3'
id "com.github.ben-manes.versions" version "0.39.0"
id 'com.github.jk1.dependency-license-report' version '1.17'
id "com.github.hierynomus.license" version "0.15.0"
id "org.asciidoctor.convert" version "2.3.0"
id "org.ajoberstar.git-publish" version "2.1.1"
id "org.asciidoctor.convert" version "2.4.0"
id "org.ajoberstar.git-publish" version "3.0.0"
}

if(JavaVersion.current() != JavaVersion.VERSION_11) {
Expand All @@ -45,7 +45,7 @@ ext.badassJlinkPluginTag = Boolean.valueOf(badassJlinkPluginReleaseBuild) ? "v$e
group = 'org.beryx'
version = badassJlinkPluginVersion

ext.asmVersion = '9.1'
ext.asmVersion = '9.2'

repositories {
mavenCentral()
Expand Down Expand Up @@ -85,7 +85,7 @@ dependencies {
implementation gradleTestKit()
implementation localGroovy()

implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.32'

plugin "org.ow2.asm:asm:$asmVersion"
plugin "org.ow2.asm:asm-commons:$asmVersion"
Expand All @@ -96,11 +96,11 @@ dependencies {
testImplementation('org.spockframework:spock-core:1.1-groovy-2.4') {
exclude module: 'groovy-all'
}
testImplementation 'cglib:cglib-nodep:3.2.9'
testImplementation 'org.objenesis:objenesis:3.0.1'
testImplementation ('com.athaydes:spock-reports:1.6.1') { transitive = false}
testImplementation 'cglib:cglib-nodep:3.3.0'
testImplementation 'org.objenesis:objenesis:3.2'
testImplementation ('com.athaydes:spock-reports:1.8.0') { transitive = false}

asciidoctor 'com.bmuschko:asciidoctorj-tabbed-code-extension:0.2'
asciidoctor 'com.bmuschko:asciidoctorj-tabbed-code-extension:0.3'
}

shadowJar {
Expand Down

0 comments on commit 1cbb583

Please sign in to comment.