Upload pom.xml via GUI
This commit is contained in:
37
pom.xml
37
pom.xml
@@ -7,7 +7,7 @@
|
||||
|
||||
<groupId>dev.viper</groupId>
|
||||
<artifactId>RealTimeWeather</artifactId>
|
||||
<version>1.2</version>
|
||||
<version>1.4</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>RealTimeWeather</name>
|
||||
@@ -15,8 +15,8 @@
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
<maven.compiler.source>21</maven.compiler.source>
|
||||
<maven.compiler.target>21</maven.compiler.target>
|
||||
</properties>
|
||||
|
||||
<repositories>
|
||||
@@ -46,18 +46,28 @@
|
||||
<version>20231013</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Adventure API -->
|
||||
<!-- Adventure API (nur für Chat-Nachrichten, NICHT für ActionBar) -->
|
||||
<dependency>
|
||||
<groupId>net.kyori</groupId>
|
||||
<artifactId>adventure-api</artifactId>
|
||||
<version>4.17.0</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Adventure Platform Bukkit -->
|
||||
<dependency>
|
||||
<groupId>net.kyori</groupId>
|
||||
<artifactId>adventure-platform-bukkit</artifactId>
|
||||
<version>4.3.3</version>
|
||||
<version>4.3.4</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Adventure Text Serializer Legacy -->
|
||||
<dependency>
|
||||
<groupId>net.kyori</groupId>
|
||||
<artifactId>adventure-text-serializer-legacy</artifactId>
|
||||
<version>4.17.0</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- bStats Bukkit Library -->
|
||||
@@ -73,7 +83,7 @@
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.10.1</version>
|
||||
<version>3.13.0</version>
|
||||
<configuration>
|
||||
<source>${maven.compiler.source}</source>
|
||||
<target>${maven.compiler.target}</target>
|
||||
@@ -83,7 +93,7 @@
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-shade-plugin</artifactId>
|
||||
<version>3.4.1</version>
|
||||
<version>3.5.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
@@ -95,15 +105,10 @@
|
||||
<pattern>org.json</pattern>
|
||||
<shadedPattern>dev.viper.shaded.org.json</shadedPattern>
|
||||
</relocation>
|
||||
<!-- Shade Adventure API -->
|
||||
<!-- Shade ALLE Adventure/Kyori Packages zusammen -->
|
||||
<relocation>
|
||||
<pattern>net.kyori.adventure</pattern>
|
||||
<shadedPattern>dev.viper.shaded.net.kyori.adventure</shadedPattern>
|
||||
</relocation>
|
||||
<!-- Shade Adventure Platform Bukkit -->
|
||||
<relocation>
|
||||
<pattern>net.kyori.platform.bukkit</pattern>
|
||||
<shadedPattern>dev.viper.shaded.net.kyori.platform.bukkit</shadedPattern>
|
||||
<pattern>net.kyori</pattern>
|
||||
<shadedPattern>dev.viper.shaded.net.kyori</shadedPattern>
|
||||
</relocation>
|
||||
<!-- Shade bStats -->
|
||||
<relocation>
|
||||
@@ -112,7 +117,7 @@
|
||||
</relocation>
|
||||
</relocations>
|
||||
<createDependencyReducedPom>false</createDependencyReducedPom>
|
||||
<minimizeJar>true</minimizeJar>
|
||||
<minimizeJar>false</minimizeJar>
|
||||
<filters>
|
||||
<filter>
|
||||
<artifact>*:*</artifact>
|
||||
|
||||
Reference in New Issue
Block a user