-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from asciidoctor/asciidoctor-diagram-2.3.1
asciidoctor-diagram 2.3.1 and asciidoctor-diagram-plantuml 1.2024.5
- Loading branch information
Showing
16 changed files
with
418 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
dependencies { | ||
gems("rubygems:asciidoctor-diagram-batik:${project.version}") | ||
} | ||
|
||
def gemFiles = fileTree("${project.buildDir}/.gems") { | ||
include 'specifications/*.gemspec' | ||
include 'gems/*/lib/**' | ||
} | ||
|
||
jrubyPrepare { | ||
doLast { | ||
println "Copy from $gemFiles into $preparedGems" | ||
copy { // bundles the gems inside this artifact | ||
from gemFiles | ||
into preparedGems | ||
} | ||
} | ||
} | ||
|
||
ext.publicationName = "mavenAsciidoctorJDiagramBatik" | ||
|
||
apply from: rootProject.file('gradle/publish.gradle') | ||
apply from: rootProject.file('gradle/signing.gradle') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
properName=AsciidoctorJ Diagram Batik | ||
description=AsciidoctorJ Diagram Batik bundles the Asciidoctor Diagram Batik RubyGem (asciidoctor-diagram-batik) so it can be loaded into the JVM using JRuby. | ||
version=1.17 | ||
gem_name=asciidoctor-diagram-batik |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
dependencies { | ||
gems("rubygems:asciidoctor-diagram-jsyntrax:${project.version}") { | ||
exclude module: "asciidoctor-diagram-batik" | ||
} | ||
implementation project(':asciidoctorj-diagram-batik') | ||
} | ||
|
||
def gemFiles = fileTree("${project.buildDir}/.gems") { | ||
include 'specifications/*.gemspec' | ||
include 'gems/*/lib/**' | ||
} | ||
|
||
jrubyPrepare { | ||
doLast { | ||
println "Copy from $gemFiles into $preparedGems" | ||
copy { // bundles the gems inside this artifact | ||
from gemFiles | ||
into preparedGems | ||
} | ||
} | ||
} | ||
|
||
ext.publicationName = "mavenAsciidoctorJDiagramPlantuml" | ||
|
||
apply from: rootProject.file('gradle/publish.gradle') | ||
apply from: rootProject.file('gradle/signing.gradle') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
properName=AsciidoctorJ Diagram JSyntrax | ||
description=AsciidoctorJ Diagram JSyntrax bundles the Asciidoctor Diagram JSyntrax RubyGem (asciidoctor-diagram-jsyntrax) so it can be loaded into the JVM using JRuby. | ||
version=1.38.1 | ||
gem_name=asciidoctor-diagram-jsyntrax | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
properName=AsciidoctorJ Diagram Plantuml | ||
description=AsciidoctorJ Diagram Plantuml bundles the Asciidoctor Diagram Plantuml RubyGem (asciidoctor-diagram-plantuml) so it can be loaded into the JVM using JRuby. | ||
version=1.2024.3 | ||
version=1.2024.5 | ||
gem_name=asciidoctor-diagram-plantuml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
properName=AsciidoctorJ Diagram | ||
description=AsciidoctorJ Diagram bundles the Asciidoctor Diagram RubyGem (asciidoctor-diagram) so it can be loaded into the JVM using JRuby. | ||
version=2.3.0 | ||
version=2.3.1 | ||
gem_name=asciidoctor-diagram |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
version=2.3.0 | ||
version=2.3.1 | ||
gem_name=asciidoctor-diagram |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.