J Maven Plugin

Maven plugin that produces a j-manifest

License

License

Categories

Categories

Maven Build Tools
GroupId

GroupId

org.buildobjects
ArtifactId

ArtifactId

j-maven-plugin
Last Version

Last Version

0.2.0
Release Date

Release Date

Type

Type

maven-plugin
Description

Description

J Maven Plugin
Maven plugin that produces a j-manifest
Project URL

Project URL

https://github.com/programmiersportgruppe/j-maven-plugin
Source Code Management

Source Code Management

https://github.com/programmiersportgruppe/j-maven-plugin

Download j-maven-plugin

How to add to project

<plugin>
    <groupId>org.buildobjects</groupId>
    <artifactId>j-maven-plugin</artifactId>
    <version>0.2.0</version>
</plugin>

Dependencies

compile (6)

Group / Artifact Type Version
org.apache.maven : maven-plugin-api jar 3.2.2
org.apache.maven : maven-core jar 3.2.2
org.codehaus.plexus : plexus-utils jar 3.0.17
com.googlecode.totallylazy » totallylazy jar 1.85
org.json : json jar 20171018
commons-io : commons-io jar 2.4

provided (1)

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

test (2)

Group / Artifact Type Version
org.apache.maven.plugin-testing : maven-plugin-testing-harness jar 3.1.0
org.apache.maven : maven-compat jar 3.2.2

Project Modules

There are no modules declared in this project.

J Maven Plugin

This plugin generates a j-manifest.json file for your project, so that the application can be started anywhere with the j utility.

To get started you need to add the plugin to your maven build and specify the main class:

 <build>
        <plugins>

            <plugin>
                <groupId>org.buildobjects</groupId>
                <artifactId>j-maven-plugin</artifactId>
                <version>0.1</version>
                <executions>
                    <execution>
                        <phase>generate-resources</phase>
                        <goals>
                            <goal>j</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <mainClass>org.programmiersportgruppe.App</mainClass>
                </configuration>
            </plugin>
        </plugins>
    </build>
org.buildobjects

programmiersportgruppe

Versions

Version
0.2.0
0.1