admin管理员组文章数量:1335371
I am using gradle 3.0 to build this but it fails no matter what I try. I cannot upgrade to a newer version of gradle or any of the plugins and 3rd party jar files since this is part of a larger project with many other builds and to do that would take months to fix. Does anyone know how to fix this ? thanks in advance
plugins {
id '.asciidoctor.convert' version '2.4.0'
id 'com.github.jruby-gradle.base' version '1.7.0'
id 'war'
}
jruby.defaultRepositories false
ext.asrPackage = "core"
ext.asrPackageType = "none"
repositories {
mavenCentral()
rubygems('')
}
dependencies {
copyCompile 'com.sun.jersey:jersey-core:1.19.1'
allTestCompile '.yaml:snakeyaml:1.14'
}
dependencies {
gems 'rubygems:asciidoctor-diagram:1.5.19'
}
asciidoctor {
dependsOn jrubyPrepare
sourceDir = file('doc')
requires = ['asciidoctor-diagram']
gemPath = jrubyPrepare.outputDir
attributes \
'build-gradle': file('build.gradle'),
'source-highlighter' : 'coderay',
'imagesdir': 'images',
'toc': 'left',
'icons': 'font',
'setanchors': '',
'idprefix': '',
'idseparator': '-',
'docinfo1': ''
}
build.dependsOn asciidoctor
本文标签: Gradle dsl ruby gems build failsStack Overflow
版权声明:本文标题:Gradle dsl ruby gems build fails - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742382356a2464345.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论