78 lines
		
	
	
		
			No EOL
		
	
	
		
			2.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			No EOL
		
	
	
		
			2.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
 | |
| 	<modelVersion>4.0.0</modelVersion>
 | |
| 	<groupId>eu.m724</groupId>
 | |
| 	<artifactId>realweather</artifactId>
 | |
| 	<version>0.9-SNAPSHOT</version>
 | |
| 	
 | |
| 	<properties>
 | |
|         <maven.compiler.source>17</maven.compiler.source>
 | |
|         <maven.compiler.target>17</maven.compiler.target>
 | |
|     </properties>
 | |
| 	  
 | |
| 	<repositories>
 | |
| 	    <repository>
 | |
| 	        <id>spigot-repo</id>
 | |
| 			<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
 | |
| 		</repository>
 | |
| 		<repository>
 | |
| 	    	<id>724rocks</id>
 | |
| 	    	<url>https://git.724.rocks/api/packages/Minecon724/maven</url>
 | |
| 	  	</repository>
 | |
| 	</repositories>
 | |
| 	  
 | |
| 	<dependencies>
 | |
| 		<dependency>
 | |
| 			<groupId>org.spigotmc</groupId>
 | |
| 		    <artifactId>spigot-api</artifactId>
 | |
| 		    <version>1.20.6-R0.1-SNAPSHOT</version>
 | |
| 		    <scope>provided</scope>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>eu.m724</groupId>
 | |
| 		    <artifactId>wtapi</artifactId>
 | |
| 		    <version>0.3</version>
 | |
| 		</dependency>
 | |
| 	</dependencies>
 | |
| 	
 | |
|     <build>
 | |
| 	    <resources>
 | |
| 	      	<resource>
 | |
| 	        	<directory>src/main/resources</directory>
 | |
| 	        	<filtering>true</filtering>
 | |
| 	      	</resource>
 | |
| 		</resources>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|           		<artifactId>maven-shade-plugin</artifactId>
 | |
|           		<version>3.6.0</version>
 | |
|           		<executions>
 | |
|             		<execution>
 | |
|                 		<phase>package</phase>
 | |
|             			<goals>
 | |
|               				<goal>shade</goal>
 | |
|             			</goals>
 | |
|             			<configuration>
 | |
|               				<artifactSet>
 | |
|                 				<includes>
 | |
|                   					<include>eu.m724:wtapi</include>
 | |
|                   					<include>org.java-websocket:Java-WebSocket</include>
 | |
|                 				</includes>
 | |
|               				</artifactSet>
 | |
|               				<filters>
 | |
| 								<filter>
 | |
| 									<artifact>eu.m724:*</artifact>
 | |
| 									<excludes>
 | |
| 										<exclude>META-INF/MANIFEST.MF</exclude>
 | |
| 									</excludes>
 | |
| 								</filter>
 | |
| 							</filters>
 | |
| 							<minimizeJar>true</minimizeJar>
 | |
|             			</configuration>
 | |
|           			</execution>
 | |
|         		</executions>
 | |
|       		</plugin>
 | |
|     	</plugins>
 | |
| 	</build>
 | |
| 	
 | |
| </project> | 
