Skip to content

Instantly share code, notes, and snippets.

View lprimak's full-sized avatar

Lenny Primak lprimak

View GitHub Profile
@lprimak
lprimak / SoteriaSecurity
Created September 22, 2020 18:59
Soteria Security Examples
here's a full set of tests/samples here:
https://github.com/eclipse-ee4j/soteria/tree/master/test
Every test is a full web application.
There's a larger application using Jakarta EE security available here: https://github.com/javaeekickoff/java-ee-kickoff-app
Let me know if that works for you.
@lprimak
lprimak / version-and-deploy
Last active September 3, 2024 03:12
How to version, update and deploy things
# Version things
mvn versions:set -DprocessAllModules=true -DgenerateBackupPoms=false -DoldVersion=2.5-SNAPSHOT -DnewVersion=2.6-SNAPSHOT
# Update deps
mvn versions:use-latest-releases versions:update-parent versions:update-properties -DgenerateBackupPoms=false \
-Dmaven.version.rules=https://raw.githubusercontent.com/flowlogix/base-pom/main/versions-ruleset.xml
mvn -U versions:display-plugin-updates -DgenerateBackupPoms=false -DprocessUnboundPlugins=true