From ad08214980fb218124d8c7249a1f808a875b7fb9 Mon Sep 17 00:00:00 2001 From: Sebastian K Date: Sun, 19 Aug 2018 10:54:42 +0200 Subject: [PATCH] 2.0.4 - Remove target folder && add gitignore file --- .gitignore | 77 +++++++++++++++++++++++++++++++++++ pom.xml | 31 ++++++++++++-- src/main/resources/bungee.yml | 2 +- 3 files changed, 105 insertions(+), 5 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..40e709d --- /dev/null +++ b/.gitignore @@ -0,0 +1,77 @@ +# Created by https://www.gitignore.io/api/intellij + +### Intellij ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/modules.xml +# .idea/*.iml +# .idea/modules + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +### Intellij Patch ### +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 + +# *.iml +# modules.xml +# .idea/misc.xml +# *.ipr + +# Sonarlint plugin +.idea/sonarlint + + +# End of https://www.gitignore.io/api/intellij \ No newline at end of file diff --git a/pom.xml b/pom.xml index 9149bae..c4875fa 100644 --- a/pom.xml +++ b/pom.xml @@ -6,20 +6,43 @@ cloud.timo CloudNotify - 2.0.3 + 2.0.4 - CloudNotify + ${project.name} + + + ${project.basedir}/src/main/resources + + ** + + true + + org.apache.maven.plugins maven-compiler-plugin + 2.0.2 - 8 - 8 + 1.8 + 1.8 + UTF-8 + + + + org.apache.maven.plugins + maven-jar-plugin + 2.1 + + + false + + ${project.name} + TimoCloud-API diff --git a/src/main/resources/bungee.yml b/src/main/resources/bungee.yml index 6db1f21..a9a1410 100644 --- a/src/main/resources/bungee.yml +++ b/src/main/resources/bungee.yml @@ -1,5 +1,5 @@ name: CloudNotify authors: [Lasergott] -version: 2.0.3 +version: ${project.version} main: cloud.timo.CloudNotify.CloudNotify depends: [TimoCloud] \ No newline at end of file