Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Micronaut #33

Open
wants to merge 35 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
35485b3
initial setup for conversion to micronaut
StephenOTT Nov 9, 2019
12d947c
update
StephenOTT Nov 11, 2019
2bac729
Add support for Form Validation
StephenOTT Nov 22, 2019
6cb447a
initial persistence setup with Micronaut Data
StephenOTT Nov 23, 2019
f5bdad6
Add jpa kotlin plugin
StephenOTT Nov 24, 2019
92bed96
Add get Form endpoint with DB support: Pageable and filters for Form …
StephenOTT Nov 24, 2019
b4eed02
Add support for H2 that has JSON support
StephenOTT Nov 27, 2019
5c9dc55
add jackson kotlin as implementation so can access the module funcs
StephenOTT Nov 27, 2019
cef43e1
Add some defaults for app yaml
StephenOTT Nov 27, 2019
902558a
Add pattern for jpa persistence and reactivestreams
StephenOTT Nov 27, 2019
3acd857
refactor: add Submissions and UserTasks support:Repos, Controllers, a…
StephenOTT Nov 29, 2019
db02265
add pattern for UserTasks and Find+Update
StephenOTT Dec 1, 2019
e7a741d
Add initial zeebe testing capability with testcontainers
StephenOTT Dec 2, 2019
e8dc277
Add initial pattern for zeebe management: workflow deployment and wor…
StephenOTT Dec 2, 2019
47d7601
add user task support with Zeebe Worker - WIP
StephenOTT Dec 4, 2019
a216167
Add Worker support for Zeebe to capture user tasks and convert them t…
StephenOTT Dec 5, 2019
be74431
Remove old imports
StephenOTT Dec 5, 2019
2025340
Add support for parallel polling and job processing...
StephenOTT Dec 8, 2019
27da423
WIP: Add generic worker, python executor worker, and refactor User Ta…
StephenOTT Dec 9, 2019
ba95628
refactor cleanup for User Tasks and Python Executor. Added completio…
StephenOTT Dec 9, 2019
c2ed4ea
add UserTasksService and refactor package placement
StephenOTT Dec 12, 2019
437ccae
fix import
StephenOTT Dec 13, 2019
da9b190
disable python executor by default
StephenOTT Dec 13, 2019
da70f1e
remove old code
StephenOTT Dec 13, 2019
d8431bf
Add end to end support for Form Submission to complete a User Task - …
StephenOTT Dec 13, 2019
7037e3c
Add support for proper error response of form submissions that failed
StephenOTT Dec 14, 2019
1046641
WIP update
StephenOTT Dec 19, 2019
07534b8
fix bad imports
StephenOTT Dec 23, 2019
7c01532
add travis
StephenOTT Dec 23, 2019
21aaec2
add linter rules capabilities
StephenOTT Dec 31, 2019
4be47ff
add more examples for linter
StephenOTT Dec 31, 2019
56bf78c
cleanup
StephenOTT Jan 1, 2020
42cef16
Add BPMN Cleaner prototype
StephenOTT Jan 1, 2020
2b7ece7
update with cleaner info
StephenOTT Jan 2, 2020
8d812cf
add license
StephenOTT Feb 11, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 11 additions & 40 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,42 +1,13 @@
# Created by .ignore support plugin (hsz.mobi)
### Maven template
Thumbs.db
.DS_Store
.gradle
build/
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
.mvn/wrapper/maven-wrapper.jar

### Java template
# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

.idea/*
out/
.idea
*.iml

tmp/*
*.ipr
*.iws
.project
.settings
.classpath
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: java

jdk: openjdk8

script:
- ./gradlew clean build

sudo: false

install: true

cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM adoptopenjdk/openjdk11-openj9:jdk-11.0.1.13-alpine-slim
COPY build/libs/quintessential-tasklist-zeebe-*-all.jar quintessential-tasklist-zeebe.jar
EXPOSE 8080
CMD java -Dcom.sun.management.jmxremote -noverify ${JAVA_OPTS} -jar quintessential-tasklist-zeebe.jar
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2018 https://github.com/StephenOTT

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading