77 lines
		
	
	
		
			No EOL
		
	
	
		
			2.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			No EOL
		
	
	
		
			2.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
| 
 | |
|     <groupId>eu.m724</groupId>
 | |
|     <artifactId>chaqt</artifactId>
 | |
|     <version>1.0-SNAPSHOT</version>
 | |
| 
 | |
|     <properties>
 | |
|         <maven.compiler.source>21</maven.compiler.source>
 | |
|         <maven.compiler.target>21</maven.compiler.target>
 | |
|         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | |
|         <exec.mainClass>eu.m724.chaqt.Main</exec.mainClass>
 | |
|     </properties>
 | |
| 
 | |
|     <repositories>
 | |
|         <repository>
 | |
|             <id>m724</id>
 | |
|             <url>https://git.m724.eu/api/packages/Minecon724/maven</url>
 | |
|         </repository>
 | |
|     </repositories>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>io.qtjambi</groupId>
 | |
|             <artifactId>qtjambi</artifactId>
 | |
|             <version>6.7.2</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>io.qtjambi</groupId>
 | |
|             <artifactId>qtjambi-native-linux-x64</artifactId>
 | |
|             <version>6.7.2</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>eu.m724</groupId>
 | |
|             <artifactId>chatapi</artifactId>
 | |
|             <version>1.1.1</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <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>
 | |
|                             <minimizeJar>true</minimizeJar>
 | |
|                         </configuration>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-jar-plugin</artifactId>
 | |
|                 <version>3.4.2</version>
 | |
|                 <configuration>
 | |
|                     <archive>
 | |
|                         <manifest>
 | |
|                             <addClasspath>true</addClasspath>
 | |
|                             <mainClass>eu.m724.chaqt.Main</mainClass>
 | |
|                         </manifest>
 | |
|                     </archive>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
| </project> | 
