Write a Properties File

Maven Plugin to write a Properties File

License

License

Categories

Categories

Maven Build Tools Net
GroupId

GroupId

com.internetitem
ArtifactId

ArtifactId

write-properties-file-maven-plugin
Last Version

Last Version

1.0.1
Release Date

Release Date

Type

Type

maven-plugin
Description

Description

Write a Properties File
Maven Plugin to write a Properties File
Project URL

Project URL

https://github.com/internetitem/write-properties-file-maven-plugin
Project Organization

Project Organization

Internet Item
Source Code Management

Source Code Management

https://github.com/internetitem/write-properties-file-maven-plugin

Download write-properties-file-maven-plugin

How to add to project

<plugin>
    <groupId>com.internetitem</groupId>
    <artifactId>write-properties-file-maven-plugin</artifactId>
    <version>1.0.1</version>
</plugin>

Dependencies

compile (2)

Group / Artifact Type Version
org.apache.maven : maven-plugin-api jar 3.1.1
org.apache.maven.plugin-tools : maven-plugin-tools-annotations jar 3.2

Project Modules

There are no modules declared in this project.

write-properties-file-maven-plugin

Maven plugin to write Properties Files

      <plugin>
        <groupId>com.internetitem</groupId>
        <artifactId>write-properties-file-maven-plugin</artifactId>
        <version>1.0.1</version>
        <executions>
          <execution>
            <id>one</id>
            <phase>compile</phase>
            <goals>
                <goal>write-properties-file</goal>
            </goals>
            <configuration>
              <filename>test.properties</filename>
              <properties>
                <property>
                  <name>one</name>
                  <value>1</value>
                </property>
                <property>
                  <name>artifactId</name>
                  <value>My Artifact ID is ${project.artifactId}</value>
                </property>
              </properties>
            </configuration>
          </execution>
        </executions>
      </plugin>

Versions

Version
1.0.1
1.0.0