de.adito.maven:jnlp-maven-plugin

a maven plugin for jnlp file creation

Лицензия

Лицензия

MIT License
Категории

Категории

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

Группа

de.adito.maven
Идентификатор

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

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

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

1.1.0
Дата

Дата

Тип

Тип

maven-plugin
Описание

Описание

de.adito.maven:jnlp-maven-plugin
a maven plugin for jnlp file creation
Ссылка на сайт

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

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

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

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

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

https://github.com/jboesl/jnlp-maven-plugin

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

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

<plugin>
    <groupId>de.adito.maven</groupId>
    <artifactId>jnlp-maven-plugin</artifactId>
    <version>1.1.0</version>
</plugin>

Зависимости

compile (2)

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

provided (1)

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

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

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

jnlp-maven-plugin

Build Status

Overview

This plugin lets you copy all dependencies to a directory by using the 'copy-dependencies' goal . In contrast to 'copy-dependency-plugin' you can define the format for each file and you can define exclusions.

With the 'fill-template' goal all dependencies can be inserted in a file. As with the 'copy-dependencies' goal those dependencies can be filtered and the output can be formatted.

Common usage

<project>
  ...
  <plugins>
    <plugin>
      <groupId>de.adito.maven</groupId>
      <artifactId>jnlp-maven-plugin</artifactId>
      <version>1.1.1</version>
      <configuration>
        <format>$(artifactId)__V$(version).$(type)</format>
        <templateFormat>&lt;jar href="$(format)"/></templateFormat>
        <customTemplateFormats>
          <property>
            <name>org.apache.maven:maven-plugin-api</name>
            <value>&lt;jar href="$(format)" main="true"/></value>
          </property>
        </customTemplateFormats>
      </configuration>
    </plugin>
  </plugins>
  ...
</project>

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

Версия
1.1.0
1.0.0