preparations for .schematic implementation

This commit is contained in:
2023-04-25 00:21:17 +02:00
parent 92b4ef90f7
commit d0a7507b95
4 changed files with 86 additions and 8 deletions
+16 -8
View File
@@ -20,6 +20,7 @@
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
@@ -32,7 +33,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<version>3.3.0</version>
<executions>
<execution>
<phase>package</phase>
@@ -41,6 +42,12 @@
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<relocations>
<relocation>
<pattern>net.querz</pattern>
<shadedPattern>me.youhavetrouble.blockedit.net.querz</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
@@ -60,12 +67,8 @@
<url>https://papermc.io/repo/repository/maven-public/</url>
</repository>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
<repository>
<id>dmulloy2-repo</id>
<url>https://repo.dmulloy2.net/repository/public/</url>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
@@ -76,6 +79,11 @@
<version>1.19.3-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.Querz</groupId>
<artifactId>NBT</artifactId>
<version>6.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>