Create Java project with Maven archetype daemon-archetype

Daemon-archetype can generate project structure to package your application as daemon or standalone executable app

Create a Java Project by archetype daemon-archetype with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -Dlauncher-name="My-launcher-name"   -Dentry-point-class="My-entry-point-class"   -Dmain-artifact-groupId="My-main-artifact-groupId"   -Dmain-artifact-artifactId="My-main-artifact-artifactId"   -Dmain-artifact-version="My-main-artifact-version"   -DarchetypeGroupId="com.github.igor-suhorukov"   -DarchetypeArtifactId="daemon-archetype"   -DarchetypeVersion="0.1"   -DinteractiveMode=false 

Required parameters for generate java project:

launcher-name
validationRegex: none
entry-point-class
validationRegex: none
main-artifact-groupId
validationRegex: none
main-artifact-artifactId
validationRegex: none
main-artifact-version
validationRegex: none

Details about maven archetype daemon-archetype

License

License

GroupId

GroupId

com.github.igor-suhorukov
ArtifactId

ArtifactId

daemon-archetype
Version

Version

0.1
Type

Type

maven-archetype
Description

Description

daemon-archetype
Daemon-archetype can generate project structure to package your application as daemon or standalone executable app
Source Code Management

Source Code Management

https://github.com/igor-suhorukov/daemon-archetype.git

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=com.github.igor-suhorukov -DarchetypeArtifactId=daemon-archetype -DarchetypeVersion=0.1 -DinteractiveMode=false

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.