Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make the asciidoc extension available to IJ plugin #1495

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -35,5 +35,6 @@ stacktrace.log

Foo.*
/.shelf/
/.asciidoctor/

!.idea/icon.png
9 changes: 9 additions & 0 deletions build-logic/asciidoc-extensions/asciidoc-extensions.gradle
Expand Up @@ -8,3 +8,12 @@ dependencies {
compileOnly 'org.asciidoctor:asciidoctorj:2.5.4'
}

tasks.register('installAsciidocExtension', Copy) {
from(tasks.named('jar'))
into('../../.asciidoctor/lib')
}

tasks.named('ideaModule').configure {
leonard84 marked this conversation as resolved.
Show resolved Hide resolved
it.dependsOn('installAsciidocExtension')
}