读取pom.xml中的属性文件时出错

时间:2018-08-02 14:43:05

标签: java maven pom.xml maven-plugin properties-file

我有一个示例属性文件,如下所示。

sample.properties

language=English
site=www.google.com
login=Login

我正在使用以下插件和目标将属性文件调用到pom.xml中

properties-maven-plugin和 读取项目属性 我的pom.xml是

             <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>properties-maven-plugin</artifactId>
                    <version>1.0.0</version>
                    <executions>
                        <execution>
                            <phase>initialize</phase>
                            <goals>
                                <goal>read-project-properties</goal>
                            </goals>
                            <configuration>
                                <files>
                                    <file>src/main/resources/sample.properties</file>
                                </files>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>

但是当我在系统配置中访问相同文件时,我无法读取它们并出现错误

    <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.19.1</version>
                <configuration>
                    <systemPropertyVariables>
                            <language>${language}</language>
                            <site>${site}</site>
                            <login>${login}</login>
                    </systemPropertyVariables>
                </configuration>
            </plugin>

以下属性标签也为空,因为定义的目标应读取并定义它。

 <properties>
</properties>

以及以下错误

Cannot resolve symbol 'site' less... (Ctrl+F1) 
Inspects a Maven model for resolution problems

我正在尝试通过以下代码访问pom.xml。

String site = System.getProperty("login");

0 个答案:

没有答案