Text File Writer - Maven Plugin

Maven plugin to write dynamic text content into files (including maven properties)

License

License

Categories

Categories

Maven Build Tools
GroupId

GroupId

me.shib.plugin
ArtifactId

ArtifactId

text-file-writer-maven-plugin
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

maven-plugin
Description

Description

Text File Writer - Maven Plugin
Maven plugin to write dynamic text content into files (including maven properties)
Project URL

Project URL

https://github.com/shibme/text-file-writer-maven-plugin
Source Code Management

Source Code Management

https://github.com/shibme/text-file-writer-maven-plugin

Download text-file-writer-maven-plugin

How to add to project

<plugin>
    <groupId>me.shib.plugin</groupId>
    <artifactId>text-file-writer-maven-plugin</artifactId>
    <version>1.0.0</version>
</plugin>

Dependencies

provided (2)

Group / Artifact Type Version
org.apache.maven : maven-plugin-api jar 3.5.3
org.apache.maven : maven-core jar 3.5.3

Project Modules

There are no modules declared in this project.

Text File Writer - Maven Plugin

Maven Central Build Status

Maven plugin to write dynamic text content into files (including maven properties)

  • This README.md file itself was generated with text-file-writer-maven-plugin plugin. Refer to this project's pom.xml to know how it is done.
  • Alternatively, you can also refer to the below sample:
<plugin>
<groupId>me.shib.plugin</groupId>
<artifactId>text-file-writer-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<phase>install</phase>
<goals><goal>text-file-writer</goal></goals>
<configuration>
<charset>UTF-8</charset>
<files>
<file>
<destination>README.md</destination>
<overwrite>true</overwrite>
<lines>
<line># Text File Writer - Maven Plugin</line>
<line>Maven plugin to write dynamic text content into files (including maven properties)</line>
</lines>
</file>
</files>
</configuration>
</execution>
<executions>
</configuration>
</plugin>

Versions

Version
1.0.0