Skip to content

Commit c52c4b4

Browse files
committed
Checking if this fixes the build error
1 parent 7a44a0e commit c52c4b4

1 file changed

Lines changed: 60 additions & 66 deletions

File tree

pom.xml

Lines changed: 60 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -2,76 +2,70 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
<modelVersion>4.0.0</modelVersion>
5+
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>simplexity</groupId>
8-
<artifactId>AdminHax</artifactId>
9-
<version>1.3.1</version>
10-
<packaging>jar</packaging>
7+
<groupId>simplexity</groupId>
8+
<artifactId>AdminHax</artifactId>
9+
<version>1.3.1</version>
10+
<packaging>jar</packaging>
1111

12-
<name>AdminHax</name>
12+
<name>AdminHax</name>
1313

14-
<properties>
15-
<java.version>21</java.version>
16-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17-
</properties>
14+
<properties>
15+
<java.version>21</java.version>
16+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17+
</properties>
1818

19-
<build>
20-
<plugins>
21-
<plugin>
22-
<groupId>org.apache.maven.plugins</groupId>
23-
<artifactId>maven-compiler-plugin</artifactId>
24-
<version>3.8.1</version>
25-
<configuration>
26-
<source>21</source>
27-
<target>21</target>
28-
</configuration>
29-
</plugin>
30-
<plugin>
31-
<groupId>org.apache.maven.plugins</groupId>
32-
<artifactId>maven-shade-plugin</artifactId>
33-
<version>3.2.4</version>
34-
<executions>
35-
<execution>
36-
<phase>package</phase>
37-
<goals>
38-
<goal>shade</goal>
39-
</goals>
40-
</execution>
41-
</executions>
42-
</plugin>
43-
</plugins>
44-
<resources>
45-
<resource>
46-
<directory>src/main/resources</directory>
47-
<filtering>true</filtering>
48-
</resource>
49-
</resources>
50-
</build>
19+
<build>
20+
<plugins>
21+
<plugin>
22+
<groupId>org.apache.maven.plugins</groupId>
23+
<artifactId>maven-compiler-plugin</artifactId>
24+
<version>3.8.1</version>
25+
<configuration>
26+
<source>21</source>
27+
<target>21</target>
28+
</configuration>
29+
</plugin>
30+
<plugin>
31+
<groupId>org.apache.maven.plugins</groupId>
32+
<artifactId>maven-shade-plugin</artifactId>
33+
<version>3.2.4</version>
34+
<executions>
35+
<execution>
36+
<phase>package</phase>
37+
<goals>
38+
<goal>shade</goal>
39+
</goals>
40+
</execution>
41+
</executions>
42+
</plugin>
43+
</plugins>
44+
<resources>
45+
<resource>
46+
<directory>src/main/resources</directory>
47+
<filtering>true</filtering>
48+
</resource>
49+
</resources>
50+
</build>
5151

52-
<repositories>
53-
<repository>
54-
<id>sonatype-snapshots</id>
55-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
56-
<releases>
57-
<enabled>false</enabled>
58-
</releases>
59-
<snapshots>
60-
<enabled>true</enabled>
61-
</snapshots>
62-
</repository>
63-
<repository>
64-
<id>papermc-repo</id>
65-
<url>https://repo.papermc.io/repository/maven-public/</url>
66-
</repository>
67-
</repositories>
52+
<repositories>
53+
<repository>
54+
<id>sonatype-oss-snapshots1</id>
55+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
56+
</repository>
57+
<repository>
58+
<id>papermc-repo</id>
59+
<url>https://repo.papermc.io/repository/maven-public/</url>
60+
</repository>
61+
</repositories>
6862

69-
<dependencies>
70-
<dependency>
71-
<groupId>io.papermc.paper</groupId>
72-
<artifactId>paper-api</artifactId>
73-
<version>1.20.5-R0.1-SNAPSHOT</version>
74-
<scope>provided</scope>
75-
</dependency>
76-
</dependencies>
63+
<dependencies>
64+
<dependency>
65+
<groupId>io.papermc.paper</groupId>
66+
<artifactId>paper-api</artifactId>
67+
<version>1.20.5-R0.1-SNAPSHOT</version>
68+
<scope>provided</scope>
69+
</dependency>
70+
</dependencies>
7771
</project>

0 commit comments

Comments
 (0)