Skip to content

Commit

Permalink
Fix dependency on jruby gradle plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
robertpanzer committed Dec 7, 2024
1 parent 16dec2e commit 8bff8ca
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,20 @@ buildscript {
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
dependencies {
classpath "biz.aQute.bnd:biz.aQute.bnd.gradle:5.3.0"
classpath("com.github.jruby-gradle:jruby-gradle-plugin:2.0.1") {
exclude module: 'grolifant'
exclude module: 'okhttp-digest'
}
classpath 'org.ysb33r.gradle:grolifant:0.17.0'
}
}

// modern plugins config
plugins {
id "signing"
id "io.github.gradle-nexus.publish-plugin" version "1.1.0"
id 'com.github.jruby-gradle.base' version '2.0.0'
id "io.github.gradle-nexus.publish-plugin" version "1.3.0"
}


Expand Down

0 comments on commit 8bff8ca

Please sign in to comment.