如何在 gradle 中像 maven 一样定义一个配置文件来替换属性
How to define a profile in gradle like maven to replace properties
在我的项目中,我使用的配置文件更改了 .pom 文件中定义的 属性。 属性 在项目内的文件上被替换。我想迁移到 gradle,但我不知道如何完全转换。
我的问题是,如何将其转换为 gradle?
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin.version}</version>
<configuration>
<archive>
<index>true</index>
<manifestEntries>
<Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
<Implementation-Title>${project.artifactId}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<key.test>jdbc/test</key.test>
</properties>
<profiles>
<profile>
<id>wildfly</id>
<properties>
<key.test>java:/jdbc/test</key.test>
</properties>
</profile>
</profiles>
</project>
在我的项目中,有一个文件内容如下:
<jta-data-source>${key.test}</jta-data-source>
谢谢
具有 gradle 的类似 Maven 的配置文件:
为项目根目录中的每个 Maven 配置文件创建构建文件:
配置文件-default.gradle 和配置文件-wildfly.gradle。然后在这些文件中声明您的 key.test 属性。
接下来,在主构建文件中添加类似于以下内容的条件:
if (!hasProperty('buildProfile')) ext.buildProfile = 'default'
apply from: "profile-${buildProfile}.gradle"
当您想使用您的 wildfly 配置文件调用构建时:
gradle -PbuildProfile=wildfly build
使用 gradle 进行资源过滤:
在您的 build.gradle 文件中使用 ReplaceTokens 过滤器(来自 ant):
import org.apache.tools.ant.filters.*
processResources {
filter ReplaceTokens, tokens: [
"application.version": project.property("application.version")
]
}
然后使用 @ 而不是 ${} 作为令牌标识符。
<jta-data-source>@key.test@</jta-data-source>
在我的项目中,我使用的配置文件更改了 .pom 文件中定义的 属性。 属性 在项目内的文件上被替换。我想迁移到 gradle,但我不知道如何完全转换。
我的问题是,如何将其转换为 gradle?
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin.version}</version>
<configuration>
<archive>
<index>true</index>
<manifestEntries>
<Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
<Implementation-Title>${project.artifactId}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<key.test>jdbc/test</key.test>
</properties>
<profiles>
<profile>
<id>wildfly</id>
<properties>
<key.test>java:/jdbc/test</key.test>
</properties>
</profile>
</profiles>
</project>
在我的项目中,有一个文件内容如下:
<jta-data-source>${key.test}</jta-data-source>
谢谢
具有 gradle 的类似 Maven 的配置文件:
为项目根目录中的每个 Maven 配置文件创建构建文件: 配置文件-default.gradle 和配置文件-wildfly.gradle。然后在这些文件中声明您的 key.test 属性。
接下来,在主构建文件中添加类似于以下内容的条件:
if (!hasProperty('buildProfile')) ext.buildProfile = 'default'
apply from: "profile-${buildProfile}.gradle"
当您想使用您的 wildfly 配置文件调用构建时:
gradle -PbuildProfile=wildfly build
使用 gradle 进行资源过滤:
在您的 build.gradle 文件中使用 ReplaceTokens 过滤器(来自 ant):
import org.apache.tools.ant.filters.*
processResources {
filter ReplaceTokens, tokens: [
"application.version": project.property("application.version")
]
}
然后使用 @ 而不是 ${} 作为令牌标识符。
<jta-data-source>@key.test@</jta-data-source>