exec-maven-plugin

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

Лицензия

Лицензия

Категории

Категории

Maven Компиляция и сборка
Группа

Группа

kr.motd.maven
Идентификатор

Идентификатор

exec-maven-plugin
Последняя версия

Последняя версия

1.0.0.Final
Дата

Дата

Тип

Тип

maven-plugin
Описание

Описание

exec-maven-plugin
A simplified fork of org.codehaus.mojo:exec-maven-plugin:exec with sensible buffer flush policy.
Ссылка на сайт

Ссылка на сайт

https://github.com/trustin/exec-maven-plugin/
Организация-разработчик

Организация-разработчик

Trustin Lee
Система контроля версий

Система контроля версий

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

Скачать exec-maven-plugin

Как подключить последнюю версию

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

Зависимости

compile (4)

Идентификатор библиотеки Тип Версия
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)

Идентификатор библиотеки Тип Версия
org.apache.maven : maven-core jar 3.2.1
org.apache.maven.plugin-tools : maven-plugin-annotations jar 3.2

Модули Проекта

Данный проект не имеет модулей.

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>

Версии библиотеки

Версия
1.0.0.Final