From ce05da0be8fb26243f31fa6e85117ae7b348b6d3 Mon Sep 17 00:00:00 2001 From: Szczurowsky Date: Thu, 7 Jul 2022 02:21:12 +0200 Subject: [PATCH] Initial commit --- .github/dependabot.yml | 11 ++++ .gitignore | 116 +++++++++++++++++++++++++++++++++++++++++ pom.xml | 82 +++++++++++++++++++++++++++++ 3 files changed, 209 insertions(+) create mode 100644 .github/dependabot.yml create mode 100644 .gitignore create mode 100644 pom.xml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..fef23c4 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "maven" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "daily" \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa495b3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,116 @@ +# User-specific stuff +.idea/ + +*.iml +*.ipr +*.iws + +# IntelliJ +out/ + +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# 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* + +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# Windows thumbnail cache files +Thumbs.db +Thumbs.db:encryptable +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk + +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 +.flattened-pom.xml + +# Common working directory +run/ +/target/ +/.idea/ \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..2f179cd --- /dev/null +++ b/pom.xml @@ -0,0 +1,82 @@ + + + 4.0.0 + + pl.szczurowsky + RatOverNats + 0.1 + + + + sonatype snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + central + Central Repository + https://repo.maven.apache.org/maven2 + + + + + + io.nats + jnats + 2.15.5 + + + org.json + json + 20220320 + + + junit + junit + 4.13.2 + test + + + org.junit.jupiter + junit-jupiter + 5.8.2 + test + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.2 + + + + + + + central + Central Repository + https://repo.maven.apache.org/maven2 + + + + + + minecodes-repository + https://repository.minecodes.pl/releases + + + minecodes-repository + https://repository.minecodes.pl/snapshots + + + + + 8 + 8 + + + \ No newline at end of file