* [JAVA-13854] added parent module * [JAVA-13854] moved apache-tapestry(submodule) to web-modules(parent) * [JAVA-13854] moved bootique(submodule) to web-modules(parent) * [JAVA-13854] moved dropwizard(submodule) to web-modules(parent) * [JAVA-13854] moved blade(submodule) to web-modules(parent) * [JAVA-13854] moved java-lite(submodule) to web-modules(parent) * [JAVA-13854] moved jooby(submodule) to web-modules(parent) * [JAVA-13854] moved linkrest(submodule) to web-modules(parent) * [JAVA-13854] moved ninja(submodule) to web-modules(parent) * [JAVA-13854] moved ratpack(submodule) to web-modules(parent) * [JAVA-13854] moved resteasy(submodule) to web-modules(parent) * [JAVA-13854] moved restx(submodule) to web-modules(parent) * [JAVA-13854] moved spark-java(submodule) to web-modules(parent) * [JAVA-13854] moved vraptor(submodule) to web-modules(parent) * [JAVA-13854] delete modules that were moved * [JAVA-13854] * [JAVA-13854] * [JAVA-13854] delete ninja submodule + moved raml(submodule) to web-modules(parent) * [JAVA-13854] moved gwt(submodule) to web-modules(parent) * [JAVA-13854] moved jakarta-ee(submodule) to web-modules(parent) * [JAVA-13854] moved javax-servlets(submodule) to web-modules(parent) * [JAVA-13854] moved javax-servlets-2(submodule) to web-modules(parent) * [JAVA-13854] moved jee-7(submodule) to web-modules(parent) * [JAVA-13854] moved play-framework(not a module) to web-modules * [JAVA-13854] fix failing test * [JAVA-13854] moved struts-2(submodule) to web-modules(parent) * [JAVA-13854] moved wicket(submodule) to web-modules(parent) * [JAVA-13854] deleted modules that were moved to web-modules * JAVA-13854 Removed moved modules from the main pom.xml Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Dhawal Kapil <dhawalkapil@gmail.com>
42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
# Name of application (make sure it has no spaces)
|
|
name: "${project.artifactId}"
|
|
|
|
# Display name of application (can have spaces)
|
|
display_name: "${project.name}"
|
|
|
|
# Type of launcher (CONSOLE or DAEMON)
|
|
type: DAEMON
|
|
|
|
# Java class to run
|
|
main_class: "${application.class}"
|
|
|
|
domain: "${project.groupId}"
|
|
|
|
short_description: "${project.artifactId}"
|
|
|
|
# Platform launchers to generate (WINDOWS, LINUX, MAC_OSX)
|
|
# Linux launcher is suitable for Bourne shells (e.g. Linux/BSD)
|
|
platforms: [ LINUX ]
|
|
|
|
# Working directory for app
|
|
# RETAIN will not change the working directory
|
|
# APP_HOME will change the working directory to the home of the app
|
|
# (where it was intalled) before running the main class
|
|
working_dir_mode: RETAIN
|
|
|
|
# Minimum version of java required (system will be searched for acceptable jvm)
|
|
min_java_version: "1.8"
|
|
|
|
# Min/max fixed memory (measured in MB)
|
|
min_java_memory: 512
|
|
max_java_memory: 512
|
|
|
|
# Min/max memory by percentage of system
|
|
#min_java_memory_pct: 10
|
|
#max_java_memory_pct: 20
|
|
|
|
# Try to create a symbolic link to java executable in <app_home>/run with
|
|
# the name of "<app_name>-java" so that commands like "ps" will make it
|
|
# easier to find your app
|
|
symlink_java: true
|