代码之家  ›  专栏  ›  技术社区  ›  Makoto

我要把一个Maven WAR建筑迁移到Gradle。如何使过滤器块以相同的方式运行?

  •  0
  • Makoto  · 技术社区  · 5 年前

    我正在将一个构建从Maven转换为Gradle,在其中,我们做了一些资源过滤。具体来说,我们有一个如下所示的块:

    <build>
        <finalName>${project.name}-${project.version}</finalName>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>src/test/resources</directory>
            <filtering>true</filtering>
          </testResource>
        </testResources>
        <filters>
            <filter>/path/to/more/resources.properties</filter>
            <filter>/path/to/more/resources.properties</filter>
            <filter>/path/to/more/resources.properties</filter>
        </filters>
    </build>
    

    ……我们也希望在格拉德尔也能得到类似的结果。

    the Copy tasks with filter in them 不完整,也不描述我要解决的具体问题:

    • 筛选出特定的资源文件
    • ${example.property} )
    • 确保神器进入我的战争

    我该怎么做呢?

    1 回复  |  直到 5 年前
        1
  •  0
  •   Makoto    5 年前

    这是一个扩展 this Gradle-oriented answer 还有一些更具体的例子。

    首先,我们需要把我们关心的所有资源读入 filter Properties 对象。

    可以这样完成:

    def resources = new Properties()
    file($projectDir/src/main/resources/<insert-properties-file>.properties").withInputStream {
        resources.load(it)
    }
    

    单一的

    接下来,我们需要实际进行过滤。这可以用 from ReplaceTokens class (我们可以导入)来执行此操作,并配置begin和end标记以匹配变量的使用。

    from("$projectDir/path/to/folder/that/has/tokens/to/replace") {
        include "**/files-to-filter-on"
        filter(ReplaceTokens, tokens: resources, beginToken: "${", endToken: "}")
    }
    

    processResources 任务。

    processResources {
        with copySpec {
            def resources = new Properties()
            file($projectDir/src/main/resources/<insert-properties-file>.properties").withInputStream {
            resources.load(it)
        }
    
        from("$projectDir/path/to/folder/that/has/tokens/to/replace") {
            include "**/files-to-filter-on"
            filter(ReplaceTokens, tokens: resources, beginToken: "${", endToken: "}")
        }
    }
    

    当你执行 ./gradlew clean war