1+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
2+ xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
3+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" >
4+ <modelVersion >4.0.0</modelVersion >
5+ <groupId >com.peeranat.ytchat</groupId >
6+ <artifactId >ytchat</artifactId >
7+ <version >1.0.0-SNAPSHOT</version >
8+ <name >YTChat</name >
9+ <repositories >
10+ <repository >
11+ <id >papermc</id >
12+ <url >https://papermc.io/repo/repository/maven-public/</url >
13+ </repository >
14+ <repository >
15+ <id >spigot-repo</id >
16+ <url >https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url >
17+ </repository >
18+ <repository >
19+ <id >kusaanko-maven</id >
20+ <url >https://raw.githubusercontent.com/kusaanko/maven/main/</url >
21+ <releases >
22+ <enabled >true</enabled >
23+ </releases >
24+ </repository >
25+ </repositories >
26+ <dependencies >
27+ <dependency >
28+ <groupId >io.papermc.paper</groupId >
29+ <artifactId >paper-api</artifactId >
30+ <version >1.21.11-R0.1-SNAPSHOT</version >
31+ <scope >provided</scope >
32+ </dependency >
33+ <dependency >
34+ <groupId >org.spigotmc</groupId >
35+ <artifactId >spigot</artifactId >
36+ <version >1.21.11-R0.2-SNAPSHOT</version >
37+ <scope >provided</scope >
38+ </dependency >
39+ <dependency >
40+ <groupId >com.github.kusaanko</groupId >
41+ <artifactId >YouTubeLiveChat</artifactId >
42+ <version >2.0</version >
43+ <scope >compile</scope >
44+ </dependency >
45+ </dependencies >
46+ <build >
47+ <sourceDirectory >src</sourceDirectory >
48+ <plugins >
49+ <plugin >
50+ <groupId >org.apache.maven.plugins</groupId >
51+ <artifactId >maven-compiler-plugin</artifactId >
52+ <version >3.13.0</version >
53+ <configuration >
54+ <source >21</source >
55+ <target >21</target >
56+ <compilerArgument >-proc:none</compilerArgument >
57+ </configuration >
58+ </plugin >
59+ <plugin >
60+ <artifactId >maven-assembly-plugin</artifactId >
61+ <configuration >
62+ <descriptorRefs >
63+ <descriptorRef >jar-with-dependencies</descriptorRef >
64+ </descriptorRefs >
65+ </configuration >
66+ <executions >
67+ <execution >
68+ <id >make-assembly</id >
69+ <phase >package</phase >
70+ <goals >
71+ <goal >single</goal >
72+ </goals >
73+ </execution >
74+ </executions >
75+ </plugin >
76+ </plugins >
77+ </build >
78+ </project >
0 commit comments