-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathbuild.gradle
24 lines (18 loc) · 987 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
agProject {
withOfflineTestConfigurations()
configurePlugin 'org.asciidoctor.jvm.leanpub',
'AsciidoctorJ Leanpub Plugin',
'Asciidoctor task for creating content suitable for Leanpub',
'org.asciidoctor.gradle.jvm.leanpub.AsciidoctorJLeanpubPlugin',
['asciidoctorj', 'leanpub', 'markdown', 'markuva']
configurePlugin 'org.asciidoctor.jvm.leanpub.dropbox-copy',
'Dropbox support for AsciidoctorJ Leanpub Plugin',
'Provides local Dropbox support for Asciidoctor Leanpub plugin',
'org.asciidoctor.gradle.jvm.leanpub.AsciidoctorJLeanpubDropboxCopyPlugin',
['asciidoctorj', 'leanpub', 'markdown', 'markuva', 'dropbox']
}
dependencies {
implementation project(':asciidoctor-gradle-jvm')
intTestOfflineRepo "org.asciidoctor:asciidoctorj:${compileOnlyAsciidoctorJVersion}"
intTestOfflineRepo "org.asciidoctor:asciidoctor-leanpub-markdown:${downloadOnlyLeanpubVersion}"
}