Skip to content

Commit

Permalink
Replaces build with stork
Browse files Browse the repository at this point in the history
  • Loading branch information
asm0dey committed Oct 17, 2018
1 parent 4aef19f commit 67a808b
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ deploy:
provider: releases
api_key:
secure: ICX8ymuqWzl+0/oxpYrEl9mmjV369ZHqtVt6Rfw5HDD1E7HGCE+hvKn4MBgRbCEwBjazEkZObd3a+tLIup4ebizWh76aPub1OVMjNN/pM3UkWECblDF2TXlyEc3HG2jRllnOh+R9OohlKe05NWZAv6mfQ1xq3qqbzPFZXd3s9N/2Zm4hUYaKC/2OSTLAGqtNrDs7OmvfQI/8/Vgqfc4+D0Xvj0ISKVXyvk8aFzC91A58cYFdbhxJFByYAQVrkWnfS1leMo1/ZLo1hOJXSmUaDJQofi5unPf3KVgRyuQ5/YBKPazqdNLip/uGrDT89pcvhphPRX/aGnfDXpLgdvAjBXwS/3YSkavKiTQS1+xqJsWcSCIjb/z6TZl1/0vUIyXRi50HBEQp3nsYNZ8kMPe+TPH4gbrqLq38VZEDjDbml6kz+mYoNlxzeqErlKqIo3tD6Z3hqema10VVX48OTrYzE3xpIGjhlAyyuCbQEdm3SHHh60oMBcwr/gAMYBJDm6T6I6KTjVLDYAh+Fsois0CuXBbTX+BZ4IFBi/N8lb2pV+YP1J+C4RxV66jQPtMJlposMC1MvdUByqy3E/Jr8trFU0Lktt3pvL/znDaIRu/KJ2hYlABRgINiW6IW9ht4iRx/BFMsUqCVonyPrSuosUftq//sRqEgtG+Fl4LlRI4FkjY=
file: target/crm-*.jar
file: target/crm-*.zip
file_glob: true
on:
repo: asm0dey/school-crm
Expand Down
5 changes: 2 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>org.ort.school</groupId>
<artifactId>crm</artifactId>
<version>1.4.1</version>
<version>1.5.0</version>
<prerequisites>
<maven>3.0.2</maven>
</prerequisites>
Expand Down Expand Up @@ -138,8 +138,7 @@
</dependency>

<dependency>
<!--@todo migrate from NPM version -->
<groupId>org.webjars.npm</groupId>
<groupId>org.webjars</groupId>
<artifactId>summernote</artifactId>
<version>0.8.10</version>
</dependency>
Expand Down
41 changes: 41 additions & 0 deletions src/etc/stork.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# 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, WINDOWS ]

# 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: 128
#max_java_memory: 2048

# Min/max memory by percentage of system
#min_java_memory_pct: 10
max_java_memory_pct: 50

# 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

0 comments on commit 67a808b

Please sign in to comment.