Skip to content

Commit 0708071

Browse files
committed
asciidoctor-diagram 2.3.1 and asciidoctor-diagram-plantuml 1.2024.5
1 parent 0e67704 commit 0708071

File tree

6 files changed

+15
-7
lines changed

6 files changed

+15
-7
lines changed

asciidoctorj-diagram-plantuml/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
dependencies {
2-
gems("rubygems:asciidoctor-diagram-plantuml:${project.version}")
2+
gems("rubygems:asciidoctor-diagram-plantuml:${project.version}") {
3+
// Version resolution does not seem to work correctly for this one, therefore requiring it explicitly
4+
exclude module: "asciidoctor-diagram-batik"
5+
}
6+
gems("rubygems:asciidoctor-diagram-batik:${asciidoctorDiagramBatikGemVersion}")
37
}
48

59
def gemFiles = fileTree("${project.buildDir}/.gems") {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
properName=AsciidoctorJ Diagram Plantuml
22
description=AsciidoctorJ Diagram Plantuml bundles the Asciidoctor Diagram Plantuml RubyGem (asciidoctor-diagram-plantuml) so it can be loaded into the JVM using JRuby.
3-
version=1.2024.3
3+
version=1.2024.5
44
gem_name=asciidoctor-diagram-plantuml
55

asciidoctorj-diagram/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ dependencies {
1212
// Exclude gems provided by AsciidoctorJ core
1313
exclude module: 'asciidoctor'
1414
exclude module: 'thread_safe'
15+
exclude module: 'rexml'
1516
exclude module: 'asciidoctor-diagram-plantuml'
1617
exclude module: 'asciidoctor-diagram-ditaamini'
1718
}
19+
gems("rubygems:rexml:$rexmlGemVersion")
1820
}
1921

2022
def gemFiles = fileTree("${project.buildDir}/.gems") {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
properName=AsciidoctorJ Diagram
22
description=AsciidoctorJ Diagram bundles the Asciidoctor Diagram RubyGem (asciidoctor-diagram) so it can be loaded into the JVM using JRuby.
3-
version=2.3.0
3+
version=2.3.1
44
gem_name=asciidoctor-diagram

build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,18 @@ ext {
3131
statusIsRelease = (status == 'release')
3232

3333
// jar versions
34-
jrubyVersion = '9.4.2.0'
34+
jrubyVersion = '9.4.7.0'
3535
junitVersion = '5.8.2'
3636
assertjVersion = '3.22.0'
37-
jsoupVersion = '1.15.3'
37+
jsoupVersion = '1.17.2'
3838

3939
// gem versions
4040
asciidoctorJVersion = project.hasProperty('asciidoctorJVersion') ? project.asciidoctorJVersion : '2.5.10'
4141
asciidoctorDiagramGemVersion = project.hasProperty('asciidoctorDiagramGemVersion') ? project.asciidoctorDiagramGemVersion : project(':asciidoctorj-diagram').version.replace('-', '.')
42-
barbyGemVersion = "0.6.8"
42+
asciidoctorDiagramBatikGemVersion = "1.17"
43+
barbyGemVersion = "0.6.9"
4344
rqrcodeGemVersion = "2.2.0"
45+
rexmlGemVersion = '3.2.6'
4446
}
4547

4648
allprojects {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=2.3.0
1+
version=2.3.1
22
gem_name=asciidoctor-diagram

0 commit comments

Comments
 (0)