I'm looking for a way to look up hostname and set it as a property in Maven.

This does not work in all environments:

...
<properties>
   <hostname>${env.HOSTNAME}</hostname>
</properties>
...

Any suggestions?

link|improve this question
Do you need that in a real build or only inside a CI environment ? – khmarbaise Sep 16 '11 at 7:15
I want to filter test-property files substituting ${hostname} with the hostname where it's run. This is useful for local builds and for CI environments. For "real" builds the hostname in the property file is hard coded. This is to make sure the property file is for the correct environment. – steinim Sep 16 '11 at 10:06
Why not creating artifacts for every environment you need instead of making a build environment depend ? What about this: blog.soebes.de/index.php?/archives/… – khmarbaise Sep 16 '11 at 11:12
That would require every developer to have their own config and manually add their hostname. The resulting artifacts are not environment dependent. The same binary is deployed to any environment. In each environment I have a property file with "secret" passwords that should not be checked in to source control or exist in other environments. When developers are building locally for test purposes I would like the build to generate the appropriate property file for the local environment based on filtering of the property file replacing placeholders with properties in the pom. – steinim Sep 16 '11 at 12:49
feedback

1 Answer

up vote 2 down vote accepted

Use a groovy script to set the project property

    <plugin>
        <groupId>org.codehaus.groovy.maven</groupId>
        <artifactId>gmaven-plugin</artifactId>
        <executions>
            <execution>
                <phase>generate-resources</phase>
                <goals>
                    <goal>execute</goal>
              </goals>
               <configuration>
                  <source>
                  project.properties["hostname"] = InetAddress.getLocalHost().getHostName()
                 </source>
             </configuration>
         </execution>
      </executions>
 </plugin>
link|improve this answer
Great solution! Thanks :) – steinim Sep 17 '11 at 6:08
feedback

Your Answer

 
or
required, but never shown

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