de.adito.maven:jnlp-maven-plugin

a maven plugin for jnlp file creation

License

License

MIT License
Categories

Categories

Maven Build Tools
GroupId

GroupId

de.adito.maven
ArtifactId

ArtifactId

jnlp-maven-plugin
Last Version

Last Version

1.1.0
Release Date

Release Date

Type

Type

maven-plugin
Description

Description

de.adito.maven:jnlp-maven-plugin
a maven plugin for jnlp file creation
Project URL

Project URL

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

Project Organization

ADITO Software GmbH
Source Code Management

Source Code Management

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

Download jnlp-maven-plugin

How to add to project

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

Dependencies

compile (2)

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

provided (1)

Group / Artifact Type Version
org.apache.maven.plugin-tools : maven-plugin-annotations jar 3.4

Project Modules

There are no modules declared in this project.

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>

Versions

Version
1.1.0
1.0.0