我已经遵循this guide使用maven将raml转换为html。
如果系统上预装了raml2html,它可以工作。是否可以自动下载插件依赖项?我正在尝试在Jenkins构建过程中自动化将raml转换为html的过程。
我已经尝试过mvn dependency:go-offline
和mvn dependency:resolve-plugins
,但是找不到其他依赖项使用的jar。
我也尝试添加raml2html依赖项,但是发生StackOverflow异常。
<!-- https://mvnrepository.com/artifact/org.webjars.npm/raml2html -->
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>raml2html</artifactId>
<version>6.4.1</version>
</dependency>
还可以使用maven将raml自动转换为html吗?