Skip to content

Commit

Permalink
Fixes asciidoctor#1275. Fix unresolved dependency grolifant and okhtt…
Browse files Browse the repository at this point in the history
…p-digest
  • Loading branch information
robertpanzer committed Jul 27, 2024
1 parent 9695d89 commit ee1a250
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ Improvement::
Bug Fixes::

* CLI should set :mkdirs option by default (#1241) (@mojavelinux)
* Fix unresolvable dependency of JRuby Gradle plugin. (#1275)

== 2.5.10 (2023-06-04)

Expand Down
9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,20 @@ buildscript {
}
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 "io.sdkman.vendors" version "2.0.0"
id "signing"
id "io.github.gradle-nexus.publish-plugin" version "1.1.0"
id 'com.github.jruby-gradle.base' version '2.0.0'
// Moved to dependency in buildscript. See https://github.com/asciidoctor/asciidoctorj/issues/1275
// id 'com.github.jruby-gradle.base' version '2.0.1'
id 'codenarc'
}

Expand Down

0 comments on commit ee1a250

Please sign in to comment.