Gradle - 仅为生产而将jar从依赖项中排除

时间:2016-03-10 18:25:08

标签: grails gradle build.gradle grails-3.1

我即将使用gradle assemble部署我的Grails 3网络应用程序来创建war文件,我正在尝试从中排除一些jar文件。

特别是我在build.gradle配置文件中添加了

dependencies {
    [...]
    assets 'com.bertramlabs.plugins:sass-asset-pipeline:2.7.2'
}

这些是上述插件的内部依赖项,这有助于我将SASS文件处理成CSS

 \--- com.bertramlabs.plugins:sass-asset-pipeline:2.7.2
      +--- com.bertramlabs.plugins:asset-pipeline-core:2.7.2
      |    +--- org.mozilla:rhino:1.7R4
      |    +--- com.google.javascript:closure-compiler:v20151015
      |    \--- commons-logging:commons-logging:1.1.1
      +--- log4j:log4j:1.2.17
      +--- org.jruby:jruby-complete:1.7.11 -> 1.7.18
      \--- com.bertramlabs.plugins:jruby-container:0.6.1
           \--- org.jruby:jruby-complete:1.7.18

由于org.ruby任务已捆绑我的css资源,因此jar排除了{2}并且生产中不需要assemble组。

configurations {
    compile.exclude group: 'org.jruby'
    [...]
}

这适用于生产环境,但开发需要相关性。

有没有快速实现这一目标的方法?提前谢谢!

2 个答案:

答案 0 :(得分:1)

我还没有测试过这个。在依赖项的build.gradle中放入

if (!project.hasProperty('grailsEnv') || project.grailsEnv.equals('dev')) { compile.exclude group: 'org.jruby' }

答案 1 :(得分:1)

感谢Arjang的建议,这解决了我的问题(虽然我确定必须有其他一些解决方案)

assets ("com.bertramlabs.plugins:sass-asset-pipeline:2.7.2") {
    if(project.gradle.startParameter.taskNames.contains('assemble')) {
        exclude group: 'org.jruby'
    }
}