From 02bc7c15e5cd1bd710321d53b861c539e4037963 Mon Sep 17 00:00:00 2001 From: tastybento Date: Fri, 10 Aug 2018 15:11:23 +0900 Subject: [PATCH] Fixed resource folder location. --- pom.xml | 413 +++++++++++---------- src/{ => main}/resources/addon.yml | 0 src/{ => main}/resources/config.yml | 0 src/{ => main}/resources/locales/en-US.yml | 0 4 files changed, 211 insertions(+), 202 deletions(-) rename src/{ => main}/resources/addon.yml (100%) rename src/{ => main}/resources/config.yml (100%) rename src/{ => main}/resources/locales/en-US.yml (100%) diff --git a/pom.xml b/pom.xml index f87b5b0..eb32f22 100644 --- a/pom.xml +++ b/pom.xml @@ -1,5 +1,6 @@ - 4.0.0 @@ -7,218 +8,226 @@ Level 0.0.1-SNAPSHOT - - BentoBox Level - Level is an add-on for BentoBox that calculates a level score for islands in BSkyBlock or AcidIsland worlds. + Level + Level is an add-on for BentoBox, an expandable Minecraft Bukkit plugin for island-type games like ASkyBlock or AcidIsland. https://github.com/BentoBoxWorld/addon-level 2018 scm:git:https://github.com/BentoBoxWorld/addon-level.git scm:git:git@github.com:BentoBoxWorld/addon-level.git - https://github.com/BentoBoxWorld/addon-level + https://github.com/BentoBoxWorld/addon-welcomewarpsigns GitHub - https://github.com/BentoBoxWorld/addon-Level/issues + https://github.com/BentoBoxWorld/addon-level/issues + + + UTF-8 + UTF-8 + 1.8 + 1.7.4 + - - UTF-8 - UTF-8 - 1.8 - 1.7.4 - + + + spigot-repo + https://hub.spigotmc.org/nexus/content/repositories/snapshots + + + + + + org.spigotmc + spigot-api + 1.13-R0.1-SNAPSHOT + provided + + + org.mockito + mockito-all + 1.10.19 + test + + + org.powermock + powermock-module-junit4 + ${powermock.version} + test + + + org.powermock + powermock-api-mockito + ${powermock.version} + test + + + org.mongodb + mongodb-driver + 3.8.0 + + + world.bentobox + bentobox + FC-0.9 + + + us.tastybento + BSkyBlock + 0.0.1-SNAPSHOT + provided + + + us.tastybento + addon-acidisland + 0.0.1-SNAPSHOT + provided + + + + + clean package + + + src/main/resources + true + + + src/main/resources/locales + ./locales + false + + + + + org.apache.maven.plugins + maven-clean-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-resources-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-compiler-plugin + 3.7.0 + + ${java.version} + ${java.version} + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.22.0 + + + org.apache.maven.plugins + maven-jar-plugin + 3.1.0 + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.0.1 + + public + false + -Xdoclint:none + + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + 3.0.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-shade-plugin + 3.1.1 + + false + + + + org.apache.maven.plugins + maven-install-plugin + 2.5.2 + + + org.apache.maven.plugins + maven-deploy-plugin + 2.8.2 + + + org.jacoco + jacoco-maven-plugin + 0.8.1 + + true + + + + pre-unit-test + + prepare-agent + + + + post-unit-test + + report + + + + + + - - - spigot-repo - https://hub.spigotmc.org/nexus/content/repositories/snapshots - - - - - - org.spigotmc - spigot-api - 1.13-R0.1-SNAPSHOT - provided - - - org.mockito - mockito-all - 1.10.19 - test - - - org.powermock - powermock-module-junit4 - ${powermock.version} - test - - - org.powermock - powermock-api-mockito - ${powermock.version} - test - - - world.bentobox - bentobox - FC-0.9 - provided - - - bskyblock.addon - WelcomeWarpSigns - 0.0.1-SNAPSHOT - provided - - - - - clean package - - - src/main/resources - true - - - src/main/resources/locales - ./locales - false - - - - - org.apache.maven.plugins - maven-clean-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-resources-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-compiler-plugin - 3.7.0 - - ${java.version} - ${java.version} - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.22.0 - - - org.apache.maven.plugins - maven-jar-plugin - 3.1.0 - - - org.apache.maven.plugins - maven-javadoc-plugin - 3.0.1 - - private - false - -Xdoclint:none - - - - attach-javadocs - - jar - - - - - - org.apache.maven.plugins - maven-source-plugin - 3.0.1 - - - attach-sources - - jar-no-fork - - - - - - org.apache.maven.plugins - maven-shade-plugin - 3.1.1 - - false - - - - org.apache.maven.plugins - maven-install-plugin - 2.5.2 - - - org.apache.maven.plugins - maven-deploy-plugin - 2.8.2 - - - org.jacoco - jacoco-maven-plugin - 0.8.1 - - true - - - - pre-unit-test - - prepare-agent - - - - post-unit-test - - report - - - - - - - - - - sonar - - https://sonarcloud.io - tastybento-github - **/Metrics.java - - - - - org.sonarsource.scanner.maven - sonar-maven-plugin - 5.1 - - - verify - - sonar - - - - - - - - + + + sonar + + https://sonarcloud.io + tastybento-github + + + + + org.sonarsource.scanner.maven + sonar-maven-plugin + 5.1 + + + verify + + sonar + + + + + + + + \ No newline at end of file diff --git a/src/resources/addon.yml b/src/main/resources/addon.yml similarity index 100% rename from src/resources/addon.yml rename to src/main/resources/addon.yml diff --git a/src/resources/config.yml b/src/main/resources/config.yml similarity index 100% rename from src/resources/config.yml rename to src/main/resources/config.yml diff --git a/src/resources/locales/en-US.yml b/src/main/resources/locales/en-US.yml similarity index 100% rename from src/resources/locales/en-US.yml rename to src/main/resources/locales/en-US.yml