Removes unnecessary fields from pom

This commit is contained in:
Kristian Knarvik 2023-07-08 02:35:56 +02:00
parent 04e456f55b
commit ae9c614066

55
pom.xml
View File

@ -12,55 +12,14 @@
<spigot.api.version>1.18</spigot.api.version> <spigot.api.version>1.18</spigot.api.version>
<spigot.version>${spigot.api.version}.1-R0.1-SNAPSHOT</spigot.version> <spigot.version>${spigot.api.version}.1-R0.1-SNAPSHOT</spigot.version>
</properties> </properties>
<scm>
<connection>scm:git:git@github.com:AddstarMC/Blockhunt.git</connection>
<developerConnection>scm:git:git@github.com:AddstarMC/Blockhunt.git</developerConnection>
<url>https://github.com/AddstarMC/Blockhunt</url>
<tag>master</tag>
</scm>
<distributionManagement>
<repository>
<id>maven.addstar.com.au</id>
<name>maven.addstar.com.au-releases</name>
<url>https://maven.addstar.com.au/artifactory/ext-release-local</url>
</repository>
<snapshotRepository>
<id>maven.addstar.com.au</id>
<name>maven.addstar.com.au-snapshots</name>
<url>https://maven.addstar.com.au/artifactory/ext-snapshot-local</url>
</snapshotRepository>
</distributionManagement>
<repositories> <repositories>
<!-- Addstar repo -->
<repository> <repository>
<snapshots> <id>spigotmc-repo</id>
<enabled>false</enabled>
</snapshots>
<id>addstar-repo</id>
<name>all-release</name>
<url>https://maven.addstar.com.au/artifactory/all-release</url>
</repository>
<repository>
<snapshots/>
<id>addstar-snapshot-repo</id>
<name>all-snapshot</name>
<url>https://maven.addstar.com.au/artifactory/all-snapshot</url>
</repository>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository> </repository>
<repository> <repository>
<id>md_5-releases</id> <id>md_5-public</id>
<url>https://repo.md-5.net/content/repositories/releases/</url> <url>https://repo.md-5.net/content/groups/public/</url>
</repository>
<repository>
<id>md_5-snapshots</id>
<url>https://repo.md-5.net/content/repositories/snapshots/</url>
</repository>
<repository>
<id>dmulloy2-repo</id>
<url>https://repo.dmulloy2.net/content/groups/public/</url>
</repository> </repository>
</repositories> </repositories>
<dependencies> <dependencies>
@ -70,11 +29,11 @@
<version>${spigot.version}</version> <version>${spigot.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<!-- LibsDiguises is required for hiding --> <!-- LibsDisguises is required for hiding -->
<dependency> <dependency>
<groupId>LibsDisguises</groupId> <groupId>LibsDisguises</groupId>
<artifactId>LibsDisguises</artifactId> <artifactId>LibsDisguises</artifactId>
<version>10.0.26</version> <version>10.0.37</version>
<scope>provided</scope> <scope>provided</scope>
<exclusions> <exclusions>
<exclusion> <exclusion>
@ -118,8 +77,8 @@
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.10.0</version> <version>3.10.0</version>
<configuration> <configuration>
<source>17</source> <source>16</source>
<target>17</target> <target>16</target>
<encoding>UTF-8</encoding> <encoding>UTF-8</encoding>
</configuration> </configuration>
</plugin> </plugin>