-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
110 lines (94 loc) · 2.68 KB
/
pom.xml
File metadata and controls
110 lines (94 loc) · 2.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.winthier.chat</groupId>
<artifactId>chat</artifactId>
<version>0.1-SNAPSHOT</version>
<name>Chat</name>
<packaging>jar</packaging>
<url>https://github.com/StarTux/Chat</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<repositories>
<!-- Cavetale Repo -->
<repository>
<id>cavetale</id>
<url>https://cavetale.com/jenkins/plugin/repository/everything/</url>
</repository>
<!-- Paper Repo -->
<repository>
<id>papermc</id>
<url>https://repo.papermc.io/repository/maven-public/</url>
</repository>
</repositories>
<dependencies>
<!-- Paper API -->
<dependency>
<groupId>io.papermc.paper</groupId>
<artifactId>paper-api</artifactId>
<version>1.21.11-R0.1-SNAPSHOT</version> <!-- Paper Version -->
<scope>provided</scope>
</dependency>
<!-- Lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.32</version>
<scope>provided</scope>
</dependency>
<!-- Title -->
<dependency>
<groupId>com.winthier.title</groupId>
<artifactId>title</artifactId>
<version>0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- SQL -->
<dependency>
<groupId>com.winthier.sql</groupId>
<artifactId>sql</artifactId>
<version>0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- Core -->
<dependency>
<groupId>com.cavetale.core</groupId>
<artifactId>core</artifactId>
<version>0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- Mytems -->
<dependency>
<groupId>com.cavetale.mytems</groupId>
<artifactId>mytems</artifactId>
<version>0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- JUnit Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>${project.name}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>21</source>
<target>21</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<compilerArgs>
<arg>-Xlint:unchecked</arg>
</compilerArgs>
</configuration>
</plugin>
</plugins>
</build>
</project>