替换Gradle Build中的文件

时间:2015-08-07 20:32:28

标签: java groovy gradle build

我正在尝试使用Gradle构建脚本生成的新文件替换资源文件夹(src / main / resources)中的文件。我做这件事很麻烦;似乎记得排除,并阻止添加我的新文件。

这是一个简短的例子,说明了这种行为。

项目结构:

TestProject
-- src/main/java
---- entry
------ EntryPoint.java
---- run
------ HelloWorldTest.java
-- src/main/resources
---- test.properties // FILE TO REPLACE

src / main / resources中的test.properties内容:

Wrong File with extra text to make it obvious which one is being put into the jar based on size

的build.gradle:

apply plugin: 'java'

task makeProp {
    def propDir = new File(buildDir, "props")
    ext.propFile = new File(propDir, "test.properties")
    outputs.file propFile

    doLast {
        propDir.mkdirs()
        propFile.createNewFile()
        propFile.withWriter('utf-8') { writer ->
            writer.writeLine 'Right File'
        }
    }
}

jar {
    dependsOn('makeProp')

    if (project.hasProperty('testExclude')) {
        sourceSets {
            exclude('test.properties')
        }
    }

    from (makeProp.propFile) {
        into '/'
    }
}

./gradlew build的JAR内容(包括两个文件):

Archive:  TestProject.jar
  Length     Date   Time    Name
 --------    ----   ----    ----
        0  08-07-15 14:27   META-INF/
       25  08-07-15 14:27   META-INF/MANIFEST.MF
        0  08-07-15 13:50   run/
      499  08-07-15 13:50   run/HelloWorldTest.class
        0  08-07-15 13:50   entry/
     1413  08-07-15 13:50   entry/EntryPoint.class
       95  08-07-15 14:27   test.properties
       11  08-07-15 14:03   test.properties
 --------                   -------
     2043                   8 files

./gradlew build -PtestExclude的JAR内容(均未包含文件):

Archive:  TestProject.jar
  Length     Date   Time    Name
 --------    ----   ----    ----
        0  08-07-15 14:29   META-INF/
       25  08-07-15 14:29   META-INF/MANIFEST.MF
        0  08-07-15 13:50   run/
      499  08-07-15 13:50   run/HelloWorldTest.class
        0  08-07-15 13:50   entry/
     1413  08-07-15 13:50   entry/EntryPoint.class
 --------                   -------
     1937                   6 files

3 个答案:

答案 0 :(得分:3)

我做了一些非常相似的事情,这对我有用。主要目标是确保在创建jar并处理文件之前运行任务。试试吧。

    // create a properties file add it to folder preprocessing
    task propertiesFile << {
        // 
        description 'Dynamically creates a properties file.'

        // needed for the first pass
        def folder = project.file('src/main/resources');
        if(!folder.exists()){
            folder.mkdirs()
        }

        //write it to a propertiess file
        def props = project.file('src/main/resources/test.properties')
        props.delete()
        props << 'write this to my file!!!!'

    }

    processResources.dependsOn propertiesFile

答案 1 :(得分:1)

问题在于,gradle SourceSet的排除模式适用于所有包含的路径,而不仅适用于特定路径。因此,在上面的示例中,所有名为test.properties的文件都将被排除,无论其位置如何。

您可以做的是让默认的test.properties位于其他位置,并根据场景制作构建副本/生成相关版本。

答案 2 :(得分:1)

我最后使用的解决方案类似于Pumphouse发布的解决方案,但是我没有删除文件,而是将其重命名为临时名称,排除了临时名称,并在完成后重命名(我需要)在构建完成后保留文件内容和位置。)

修改了build.gradle:

apply plugin: 'java'

def props = project.file('src/main/resources/test.properties')
def temp = project.file('src/main/resources/temp.properties')

task makeProp {
    ... // Unchanged
}

jar {
    dependsOn('makeProp')

    // Move the properties file to a temp location
    props.renameTo(temp) // This returns a boolean; can perform conditional checks.

    // Exclude the temp file
    if (project.hasProperty('testExclude')) {
        sourceSets {
            exclude('temp.properties')
        }
    }

    // Insert the right prop file
    from (makeProp.propFile) {
        into '/'
    }
}
jar << {
    // Restore the temp file
    temp.renameTo(props)
}