是否可以使用文件过滤器过滤生成的 Maven EAR 插件 application.xml?
Is it possible to filter a generated Maven EAR plugin application.xml with a file filter?
我正在尝试使用文件过滤器过滤由 maven-ear-plugin
生成的 application.xml
文件。我的项目结构是 Maven 的标准。
这是我的 POM 文件:
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>test</groupId>
<artifactId>test-filter</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>ear</packaging>
<properties>
<prop1>xyz</prop1>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-ear-plugin</artifactId>
<version>2.10.1</version>
<configuration>
<version>6</version>
<env-entries>
<env-entry>
<env-entry-name>env1</env-entry-name>
<env-entry-type>java.lang.String</env-entry-type>
<env-entry-value>${prop1}</env-entry-value>
</env-entry>
</env-entries>
</configuration>
</plugin>
</plugins>
</build>
</project>
到目前为止一切正常。该插件生成一个 application.xml
文件,其中包含带有内插值 xyz
.
的 env1
条目
问题是当我将 Maven 属性 prop1
移动到属性文件并配置过滤器时:
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>test</groupId>
<artifactId>test-filter</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>ear</packaging>
<build>
<filters>
<filter>src/main/filters/filter.properties</filter>
</filters>
<plugins>
<plugin>
<artifactId>maven-ear-plugin</artifactId>
<version>2.10.1</version>
<configuration>
<version>6</version>
<env-entries>
<env-entry>
<env-entry-name>env1</env-entry-name>
<env-entry-type>java.lang.String</env-entry-type>
<env-entry-value>${prop1}</env-entry-value>
</env-entry>
</env-entries>
</configuration>
</plugin>
</plugins>
</build>
</project>
根据我对 filters
功能的理解,它与属性等效,但使用单独的文件。尽管如此,生成的 application.xml
包含条目 env1
而没有插入 ${prop1}
。
当然文件 src/main/filters/filter.properties
存在并且包含:
prop1=abc
有什么我遗漏的吗?
我的猜测是插件的顺序 运行 对您不利。
ear 插件很早就创建了 application.xml:http://maven.apache.org/plugins/maven-ear-plugin/generate-application-xml-mojo.html 在 "generate-resources" 过程中。
下一阶段过滤 运行s 的资源插件:http://maven.apache.org/ref/3.3.9/maven-core/default-bindings.html#Plugin_bindings_for_ear_packaging
因此在生成 application.xml 时可能未读取属性。
一种选择是使用属性插件:http://www.mojohaus.org/properties-maven-plugin/usage.html 并将其绑定到早期阶段,以便在 ear 插件中进行过滤。
我正在尝试使用文件过滤器过滤由 maven-ear-plugin
生成的 application.xml
文件。我的项目结构是 Maven 的标准。
这是我的 POM 文件:
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>test</groupId>
<artifactId>test-filter</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>ear</packaging>
<properties>
<prop1>xyz</prop1>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-ear-plugin</artifactId>
<version>2.10.1</version>
<configuration>
<version>6</version>
<env-entries>
<env-entry>
<env-entry-name>env1</env-entry-name>
<env-entry-type>java.lang.String</env-entry-type>
<env-entry-value>${prop1}</env-entry-value>
</env-entry>
</env-entries>
</configuration>
</plugin>
</plugins>
</build>
</project>
到目前为止一切正常。该插件生成一个 application.xml
文件,其中包含带有内插值 xyz
.
env1
条目
问题是当我将 Maven 属性 prop1
移动到属性文件并配置过滤器时:
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>test</groupId>
<artifactId>test-filter</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>ear</packaging>
<build>
<filters>
<filter>src/main/filters/filter.properties</filter>
</filters>
<plugins>
<plugin>
<artifactId>maven-ear-plugin</artifactId>
<version>2.10.1</version>
<configuration>
<version>6</version>
<env-entries>
<env-entry>
<env-entry-name>env1</env-entry-name>
<env-entry-type>java.lang.String</env-entry-type>
<env-entry-value>${prop1}</env-entry-value>
</env-entry>
</env-entries>
</configuration>
</plugin>
</plugins>
</build>
</project>
根据我对 filters
功能的理解,它与属性等效,但使用单独的文件。尽管如此,生成的 application.xml
包含条目 env1
而没有插入 ${prop1}
。
当然文件 src/main/filters/filter.properties
存在并且包含:
prop1=abc
有什么我遗漏的吗?
我的猜测是插件的顺序 运行 对您不利。
ear 插件很早就创建了 application.xml:http://maven.apache.org/plugins/maven-ear-plugin/generate-application-xml-mojo.html 在 "generate-resources" 过程中。
下一阶段过滤 运行s 的资源插件:http://maven.apache.org/ref/3.3.9/maven-core/default-bindings.html#Plugin_bindings_for_ear_packaging
因此在生成 application.xml 时可能未读取属性。
一种选择是使用属性插件:http://www.mojohaus.org/properties-maven-plugin/usage.html 并将其绑定到早期阶段,以便在 ear 插件中进行过滤。