exec-maven-plugin

A simplified fork of org.codehaus.mojo:exec-maven-plugin:exec with sensible buffer flush policy.

License

License

Categories

Categories

Maven Build Tools
GroupId

GroupId

kr.motd.maven
ArtifactId

ArtifactId

exec-maven-plugin
Last Version

Last Version

1.0.0.Final
Release Date

Release Date

Type

Type

maven-plugin
Description

Description

exec-maven-plugin
A simplified fork of org.codehaus.mojo:exec-maven-plugin:exec with sensible buffer flush policy.
Project URL

Project URL

https://github.com/trustin/exec-maven-plugin/
Project Organization

Project Organization

Trustin Lee
Source Code Management

Source Code Management

https://github.com/trustin/exec-maven-plugin

Download exec-maven-plugin

How to add to project

<plugin>
    <groupId>kr.motd.maven</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.0.0.Final</version>
</plugin>

Dependencies

compile (4)

Group / Artifact Type Version
org.apache.maven : maven-plugin-api jar 3.2.1
org.apache.maven : maven-toolchain jar 2.2.1
org.codehaus.plexus : plexus-utils jar 3.0.17
org.apache.commons : commons-exec jar 1.2

provided (2)

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

Project Modules

There are no modules declared in this project.

This plugin is a fork of org.codehaus.mojo:exec-maven-plugin version 1.3. The main differences are:

  • It does not have the exec:java goal
  • It flushes stdout, stderr, and output file whenever it seeds a newline character to make this plugin useful for the execution of interactive applications.

Please do not mix this plugin with the original one; they have the same plugin prefix. (exec:*)

To use this plugin, add the following <plugin/> section to your pom.xml's <build/> section:

<project>
  <build>
    <plugins>
      <plugin>
        <groupId>kr.motd.maven</groupId>
        <artifactId>exec-maven-plugin</artifactId>
        <version>1.0.0.Final</version>
        ...
      </plugin>
      ...
    </plugins>
  </build>
</project>

Versions

Version
1.0.0.Final