如何通过读取.properties文件来设置maven属性标记的值

时间:2016-05-29 13:34:01

标签: maven

我有5个项目,在这里我想将java类从一个非maven项目复制到maven项目,因为我使用了maven-ant-plugin。有了这个我能够成功地复制。

  

的pom.xml

<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>com.test</groupId>
    <artifactId>Test</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <properties>
        <project1_maven.src.main.java>c:/maven1/src/main/java</project1_maven.src.main.java>
        <project1_maven.src.test.java>c:/maven1/src/test/java</project1_maven.src.test.java>

        <project1.nonmaven.src>c:/non-maven1/src</project1.nonmaven.src>
        <project1.nonmaven.test>c:/non-maven1/test</project1.nonmaven.test>

    </properties>
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>1.7</version>
                <executions>
                    <execution>
                        <phase>install</phase>
                        <configuration>
                            <target>
                                <copy file="${project1.nonmaven.src}"
                                    todir="${project1_maven.src.main.java}" />
                                <copy file="${project1.nonmaven.test}"
                                    todir="${project1_maven.src.test.java}" />
                            </target>
                        </configuration>
                        <goals>
                            <goal>run</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.3</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
        </plugins>



        <sourceDirectory>src</sourceDirectory>
        <resources>
            <resource>
                <directory>src</directory>
                <excludes>
                    <exclude>**/*.java</exclude>
                </excludes>
            </resource>
        </resources>
    </build>
</project>

但是我的问题是,不是直接在pom.xml内部给出源路径和目标路径(我想对其余的4个项目给出这个),我只是想从属性文件中读取它。 / p>

例如: <project1.nonmaven.src> ${get the location from property bundle by using key}</project1.nonmaven.src>

请问有人建议我怎么做?

感谢。

0 个答案:

没有答案