我无法使asciidoctor在gradle中运行。脚本在下面。
asciidoctor {
logger.lifecycle("Processing from $sourceDir to $asciiDocOutputDir")
sources {
include 'index.adoc'
}
backends = ['html5']
attributes = [
doctype: 'book',
toc: 'left',
toclevels: '3',
numbered: '',
sectlinks: '',
sectanchors: '',
hardbreaks: '',
generated: asciiDocOutputDir
]
}
这是调试行的打印输出,用于显示目录:
从C:\ Users \ xxx \ eclipse-workspace \ springfox \ src \ docs \ asciidoc到C:\ Users \ xxx \ eclipse-workspace \ springfox \ build \ asciidoc \ Generated
在上面的日志行已打印的情况下,这是否意味着asciidoctor任务已运行?我没有看到错误,也没有创建index.html(或者至少在我希望看到的文件夹中找不到它)。
我在以下位置有一个index.adoc文件: C:\ Users \ xxx \ eclipse-workspace \ springfox \ src \ docs \ asciidoc \ index.adoc,内容如下:
include::{generated}/overview.adoc[]
include::{generated}/paths.adoc[]
include::{generated}/security.adoc[]
include::{generated}/definitions.adoc[]
以下目录中的目录包含4个.adoc文件: C:\ Users \ xxx \ eclipse-workspace \ springfox \ build \ asciidoc \生成
但是我无法创建index.html :-(.。某个地方肯定有一个愚蠢的错误,但是我却无法弄清楚。我应该寻找什么,或者如何调试它?
谢谢!