Skip to content

Commit

Permalink
Merge pull request #9 from robertpanzer/fix-jruby-gradle-plugin
Browse files Browse the repository at this point in the history
Fix dependency on jruby gradle plugin
  • Loading branch information
robertpanzer authored Dec 7, 2024
2 parents 16dec2e + bca2037 commit 4e3e15a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
max-parallel: 2
matrix:
java:
- '8'
- '11'
- '17'
os:
Expand Down
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 4e3e15a

Please sign in to comment.