Skip to content

Commit

Permalink
🐛 修复构建
Browse files Browse the repository at this point in the history
  • Loading branch information
INSide-734 committed Oct 26, 2024
1 parent 53f9a13 commit 231aaee
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion MMOItems-API/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>9</source>
<target>9</target>
</configuration>
</plugin>
</plugins>

</build>
Expand Down Expand Up @@ -84,6 +92,22 @@
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
</repository>

<repository>
<id>ProtocolLib</id>
<url>https://repo.dmulloy2.net/repository/public/</url>
</repository>

<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>

<repository>
<id>minebench-repository</id>
<url>https://repo.minebench.de/</url>
</repository>


</repositories>

<!--
Expand Down Expand Up @@ -120,7 +144,7 @@
<dependency>
<groupId>net.Indyuce</groupId>
<artifactId>MMOCore-API</artifactId>
<version>1.12-SNAPSHOT</version>
<version>1.12.1-SNAPSHOT</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
Expand Down Expand Up @@ -162,6 +186,12 @@
<version>2.9.2</version>
<scope>provided</scope>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Mythic -->
<dependency>
Expand Down

0 comments on commit 231aaee

Please sign in to comment.