-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Fido2603
committed
Mar 19, 2020
1 parent
176185d
commit 966a3cd
Showing
5 changed files
with
167 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,8 @@ dependency-reduced-pom.xml | |
|
||
# IDEA-specific | ||
/.idea/ | ||
mydog.iml | ||
|
||
# Maven build | ||
/target/ | ||
/.mvn/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,83 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>dk.fido2603</groupId> | ||
<artifactId>mydog</artifactId> | ||
<version>0.0.9</version> | ||
<name>MyDog</name> | ||
<description>Tamed wolves but at least 10x better!</description> | ||
<url>https://github.com/DoggyCraftDK/MyDog</url> | ||
<packaging>jar</packaging> | ||
<licenses> | ||
<license> | ||
<name>MIT License</name> | ||
<url>https://raw.githubusercontent.com/DoggyCraftDK/MyDog/master/LICENSE</url> | ||
</license> | ||
</licenses> | ||
<properties> | ||
<jdk.version>1.8</jdk.version> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<sonar.host.url>http://localhost:9000/</sonar.host.url> | ||
<!--suppress UnresolvedMavenProperty --> | ||
<sonar.dependencyCheck.reportPath>${dependency.check.report.dir}/dependency-check-report.xml</sonar.dependencyCheck.reportPath> | ||
<!--suppress UnresolvedMavenProperty --> | ||
<sonar.dependencyCheck.htmlReportPath>${dependency.check.report.dir}/dependency-check-report.html</sonar.dependencyCheck.htmlReportPath> </properties> | ||
<repositories> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>dk.fido2603</groupId> | ||
<artifactId>mydog</artifactId> | ||
<version>0.1.0</version> | ||
<name>MyDog</name> | ||
<description>Tamed wolves but at least 10x better!</description> | ||
<url>https://github.com/DoggyCraftDK/MyDog</url> | ||
<packaging>jar</packaging> | ||
<licenses> | ||
<license> | ||
<name>MIT License</name> | ||
<url>https://raw.githubusercontent.com/DoggyCraftDK/MyDog/master/LICENSE</url> | ||
</license> | ||
</licenses> | ||
<distributionManagement> | ||
<repository> | ||
<id>github</id> | ||
<name>GitHub DoggyCraftDK Apache Maven Packages</name> | ||
<url>https://maven.pkg.github.com/DoggyCraftDK/MyDog</url> | ||
</repository> | ||
</distributionManagement> | ||
<properties> | ||
<jdk.version>1.8</jdk.version> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<sonar.host.url>http://localhost:9000/</sonar.host.url> | ||
<!--suppress UnresolvedMavenProperty --> | ||
<sonar.dependencyCheck.reportPath>${dependency.check.report.dir}/dependency-check-report.xml</sonar.dependencyCheck.reportPath> | ||
<!--suppress UnresolvedMavenProperty --> | ||
<sonar.dependencyCheck.htmlReportPath>${dependency.check.report.dir}/dependency-check-report.html</sonar.dependencyCheck.htmlReportPath> | ||
</properties> | ||
<repositories> | ||
<!-- Spigot Repo for Spigot and Bukkit --> | ||
<repository> | ||
<id>spigot-repo</id> | ||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots</url> | ||
<id>spigot-repo</id> | ||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots</url> | ||
</repository> | ||
<!-- Vault repo for Vault --> | ||
<repository> | ||
<id>vault-repo</id> | ||
<url>http://nexus.hc.to/content/repositories/pub_releases</url> | ||
<id>vault-repo</id> | ||
<url>http://nexus.hc.to/content/repositories/pub_releases</url> | ||
</repository> | ||
</repositories> | ||
<dependencies> | ||
<!-- Spigot --> | ||
</repositories> | ||
<dependencies> | ||
<!-- Spigot --> | ||
<dependency> | ||
<groupId>org.spigotmc</groupId> | ||
<artifactId>spigot-api</artifactId> | ||
<version>1.14.4-R0.1-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
<groupId>org.spigotmc</groupId> | ||
<artifactId>spigot-api</artifactId> | ||
<version>1.15.2-R0.1-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<!-- VaultAPI --> | ||
<!-- VaultAPI --> | ||
<dependency> | ||
<groupId>net.milkbowl.vault</groupId> | ||
<artifactId>VaultAPI</artifactId> | ||
<version>1.7</version> | ||
<scope>provided</scope> | ||
<groupId>net.milkbowl.vault</groupId> | ||
<artifactId>VaultAPI</artifactId> | ||
<version>1.7</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<defaultGoal>clean package</defaultGoal> | ||
<finalName>${project.name}-${project.version}</finalName> | ||
<sourceDirectory>${project.basedir}/src/</sourceDirectory> | ||
<resources> | ||
<resource> | ||
<filtering>true</filtering> | ||
<directory>${project.basedir}/src/resources</directory> | ||
<includes> | ||
<include>*.yml</include> | ||
</includes> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>3.2.1</version> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</dependencies> | ||
<build> | ||
<defaultGoal>clean package</defaultGoal> | ||
<finalName>${project.name}-${project.version}</finalName> | ||
<sourceDirectory>${project.basedir}/src/</sourceDirectory> | ||
<resources> | ||
<resource> | ||
<filtering>true</filtering> | ||
<directory>${project.basedir}/src/resources</directory> | ||
<includes> | ||
<include>*.yml</include> | ||
</includes> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>3.2.1</version> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.