文档的 build 文件
This commit is contained in:
parent
f1e652bcce
commit
4ebc3891d9
|
@ -0,0 +1,30 @@
|
|||
plugins {
|
||||
id "org.asciidoctor.convert" version "2.3.0"
|
||||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
|
||||
version = '1.0.0'
|
||||
|
||||
asciidoctor {
|
||||
|
||||
def build = file('build.gradle')
|
||||
|
||||
attributes 'build-gradle': build,
|
||||
'endpoint-url': 'https://docs.ossez.com',
|
||||
'source-highlighter': 'coderay',
|
||||
'imagesdir': 'images',
|
||||
'includedir': '_includes',
|
||||
'toc': 'left',
|
||||
'icons': 'font',
|
||||
'setanchors': '',
|
||||
'idprefix': '',
|
||||
'idseparator': '-',
|
||||
'docinfo1': ''
|
||||
}
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
maven { url "https://maven.ossez.com/repository/internal" }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue