0

我使用 Gradle 及其 ShadowJar 插件为我的应用程序构建了一个胖 jar,该应用程序部署在两个上下文之一中。

在一种情况下,环境提供了依赖项 A、B 和 C(以及它们所有的传递依赖项),这些类不应该是我的胖 jar 的一部分。

在另一种情况下,环境仅提供依赖项 A 和 B,我必须确保 C 及其所有传递依赖项都捆绑在我的 fat jar 中。

如何在我的 Gradle 构建文件中定义此行为?runtime.exclude我认为最好的方法是根据构建目标或命令行参数以某种方式调整属性。

4

2 回答 2

0

我使用了一个如下所示的构建文件:

subprojects {
    apply plugin: "java"
    apply plugin: "scala"
    version = "1.0-SNAPSHOT"
    group = "com.example.projects"
    ext.deployEnv = "Env1"

    if (project.hasProperty("deployEnv")) {
        ext.deployEnv= project.property("deployEnv")
    }
}

project(":myproject") {
    configurations {
        runtime.exclude group: 'A'
        runtime.exclude group: 'B'
    }

    if (ext.deployEnv == 'Env0') {
        configurations {
            runtime.exclude group:'C'
        }
    }
}

它可以满足我的要求,只需对构建文件进行最少的更改。

于 2016-11-23T01:55:55.043 回答
0

所以我认为您正在寻找两种配置。

apply plugin: 'groovy'

repositories {
    jcenter()
}

dependencies {
    compile localGroovy()
    compile 'org.slf4j:slf4j-api:1.7.21'
    compileOnly group: 'com.google.guava', name: 'guava', version: '20.0'
    testCompile 'junit:junit:4.12'
}

task fatJar(type: Jar) {
    from sourceSets.main.output, configurations.compile
    baseName = "$project.name-fat"
}

jar.dependsOn fatJar

现在我们可以为我们有兴趣部署到的每个上下文创建一个 jar

$ ./gradlew clean build
Configuration on demand is an incubating feature.
:clean
:compileJava UP-TO-DATE
:compileGroovy
:processResources UP-TO-DATE
:classes
:fatJar
:jar
:assemble
:compileTestJava UP-TO-DATE
:compileTestGroovy UP-TO-DATE
:processTestResources UP-TO-DATE
:testClasses UP-TO-DATE
:test UP-TO-DATE
:check UP-TO-DATE
:build

BUILD SUCCESSFUL

Total time: 4.997 secs

现在让我们验证我们有一个胖罐子

$ unzip build/libs/q40727142-fat.jar -d build/libs/included
Archive:  build/libs/q40727142-fat.jar
   creating: build/libs/included/META-INF/
  inflating: build/libs/included/META-INF/MANIFEST.MF  
   creating: build/libs/included/com/
   creating: build/libs/included/com/jbirdvegas/
   creating: build/libs/included/com/jbirdvegas/q40727142/
  inflating: build/libs/included/com/jbirdvegas/q40727142/Hello.class  
  inflating: build/libs/included/groovy-all-2.4.7.jar  
  inflating: build/libs/included/slf4j-api-1.7.21.jar  

并且让我们验证原始配置中没有我们期望提供的 jars。

$ unzip build/libs/q40727142.jar -d build/libs/notIncluded
Archive:  build/libs/q40727142.jar
   creating: build/libs/notIncluded/META-INF/
  inflating: build/libs/notIncluded/META-INF/MANIFEST.MF  
   creating: build/libs/notIncluded/com/
   creating: build/libs/notIncluded/com/jbirdvegas/
   creating: build/libs/notIncluded/com/jbirdvegas/q40727142/
  inflating: build/libs/notIncluded/com/jbirdvegas/q40727142/Hello.class
于 2016-11-22T04:51:49.410 回答