properties-maven-plugin

Maven Plugin to write properties

APACHE-2.0 License

Stars
0
Committers
2

properties-maven-plugin

Write properties file.

Plugin

Plugin reports available at plugin info.

There is a single goal: write, which by default binds to the "generate-resources" phase. This goal reads properties from the defaults location, adds properties specified in the configuration, and writes a properties file at the filename location. The properties file will contain lines of form key=value. No character escaping or line folding will occur.

Configuration

Parameter Property Default Description
comment ${properties.comment} Comment added to properties
defaults ${properties.defaults} Relative to ${project.build.directory} Filename to read defaults
filename ${properties.filename} Relative to ${project.build.directory} Filename to write properties
properties Properties to write
skip ${properties.skip} false Skip writing properties

Examples

Typical Use

  <build>
    <pluginManagement>
        <plugins>
          <plugin>
            <groupId>org.honton.chas</groupId>
            <artifactId>properties-maven-plugin</artifactId>
            <version>0.0.2</version>
          </plugin>
        </plugins>
    </pluginManagement>

    <plugins>
      <plugin>
        <groupId>org.honton.chas</groupId>
        <artifactId>properties-maven-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>write</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <defaults>../target/env/properties</defaults>
          <filename>docker/env.properties</filename>
          <properties>
            <pwd>/home/myself</pwd>
            <user>ramesh</user>
          </properties>
        </configuration>
      </plugin>
    </plugins>
  </build>