我的 Maven 站点包含多个 Asciidoctor 文档。我想使用在 Maven Site 插件的配置中声明的属性,但似乎它们并没有过度交给 Asciidoctor。
<plugin>
<artifactId>maven-site-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
</dependency>
</dependencies>
<configuration>
<attributes>
<ta>ddd</ta>
</attributes>
</configuration>
</plugin>
这是我如何尝试ta
在我的 Asciidoctor 文档中使用该属性的示例。
= Example Document
Value of ta is: {ta}
如何在我的 Asciidoctor 文档中使用为 Maven Site 插件定义的属性?