up vote 24 down vote favorite
6
share [g+] share [fb]

Does anyone know how to read a x.properties file in Maven. I know there are ways to use resource filtering to read a properties file and set values from that, but I want a way in my pom.xml like:

<properties file="x.properties"> 

</properties>

There was some discussion about this: Maven External Properties

link|improve this question

58% accept rate
feedback

protected by Community Oct 28 '11 at 12:28

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

3 Answers

up vote 20 down vote accepted

Try the Properties Plugin

link|improve this answer
1  
I think that's what I'm looking for I couldn't find the 1.0-SNAPSHOT in the maven repositories but there is a release: mvnrepository.com/artifact/org.codehaus.mojo/… <dependency> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <version>1.0-alpha-1</version> </dependency> – Dougnukem May 11 '09 at 19:32
2  
Current link: mojo.codehaus.org/properties-maven-plugin/… – Jesse Glick Jul 7 '11 at 16:01
Current version: <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <version>1.0-alpha-2-SNAPSHOT</version> from snapshots.repository.codehaus.org – FunThomas424242 Jul 28 '11 at 20:19
feedback

Using the suggested Maven properties plugin I was able to read in a buildNumber.properties file that I use to version my builds.

<dependency>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>properties-maven-plugin</artifactId>
    <version>1.0-alpha-1</version>
</dependency> 
...
  <build>    
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>properties-maven-plugin</artifactId>
        <version>1.0-alpha-1</version>
        <executions>
          <execution>
            <phase>initialize</phase>
            <goals>
              <goal>read-project-properties</goal>
            </goals>
            <configuration>
              <files>
                <file>${basedir}/../project-parent/buildNumber.properties</file>
              </files>
            </configuration>
          </execution>
        </executions>
      </plugin>
   </plugins>
link|improve this answer
feedback

This answer to a similar question describes how to extend the properties plugin so it can use a remote descriptor for the properties file. The descriptor is basically a jar artifact containing a properties file (the properties file is included under src/main/resources).

The descriptor is added as a dependency to the extended properties plugin so it is on the plugin's classpath. The plugin will search the classpath for the properties file, read the file''s contents into a Properties instance, and apply those properties to the project's configuration so they can be used elsewhere.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.