-
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.
Upgrade to the latest AsciidoctorJ v3.0. Also, add deps.edn for easier inclusion in deps-based projects. Bump version of the plugin itself to 1 - it has been stable for a long time. Key code changes: * Use the OptionsBuilder -> Options (though as little as possible) instead of the deprecated map argument. * When cryogen's `:debug?` is on, print the final options - useful in troubleshooting
- Loading branch information
Showing
3 changed files
with
34 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{:paths ["resources" ; needs to be in `paths` otherwise sys.classloader doesn't find plugin.edn | ||
"src" ] | ||
:deps {cryogen-core/cryogen-core {:mvn/version "0.4.4"} | ||
;; BEWARE: keep in sync with project.clj | ||
org.asciidoctor/asciidoctorj {:mvn/version "3.0.0-alpha.1"}} | ||
} |
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,8 +1,9 @@ | ||
(defproject cryogen-asciidoc "0.3.4" | ||
(defproject cryogen-asciidoc "1.0.0" | ||
:description "AsciiDoc parser for Cryogen" | ||
:url "https://github.com/cryogen-project/cryogen-asciidoc" | ||
:license {:name "Eclipse Public License" | ||
:url "http://www.eclipse.org/legal/epl-v10.html"} | ||
:dependencies [[org.clojure/clojure "1.10.1"] | ||
[cryogen-core "0.3.2"] | ||
[org.asciidoctor/asciidoctorj "2.5.3"]]) | ||
[cryogen-core "0.4.4"] | ||
;; ;; BEWARE: keep in sync with deps.edn | ||
[org.asciidoctor/asciidoctorj "3.0.0-alpha.1"]]) |
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