1+ <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" >
2+ <modelVersion >4.0.0</modelVersion >
3+ <groupId >dev.webview</groupId >
4+ <artifactId >Webview</artifactId >
5+ <version >1.0.0</version >
6+
7+ <properties >
8+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
9+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
10+ </properties >
11+
12+ <build >
13+ <plugins >
14+ <plugin >
15+ <groupId >org.apache.maven.plugins</groupId >
16+ <artifactId >maven-compiler-plugin</artifactId >
17+ <version >3.8.1</version >
18+ <configuration >
19+ <source >11</source >
20+ <target >11</target >
21+ </configuration >
22+ </plugin >
23+ <plugin >
24+ <groupId >org.apache.maven.plugins</groupId >
25+ <artifactId >maven-jar-plugin</artifactId >
26+ <version >2.3.2</version >
27+ <configuration >
28+ <finalName >${project.name} -original</finalName >
29+ </configuration >
30+ </plugin >
31+ <plugin >
32+ <groupId >org.apache.maven.plugins</groupId >
33+ <artifactId >maven-shade-plugin</artifactId >
34+ <version >3.2.1</version >
35+ <executions >
36+ <execution >
37+ <id >shade</id >
38+ <phase >package</phase >
39+ <goals >
40+ <goal >shade</goal >
41+ </goals >
42+ </execution >
43+ </executions >
44+ <configuration >
45+ <shadedArtifactAttached >true</shadedArtifactAttached >
46+ <finalName >${project.name} </finalName >
47+ </configuration >
48+ </plugin >
49+ <plugin >
50+ <groupId >org.apache.maven.plugins</groupId >
51+ <artifactId >maven-source-plugin</artifactId >
52+ <version >3.1.0</version >
53+ <configuration >
54+ <finalName >${project.name} </finalName >
55+ </configuration >
56+ <executions >
57+ <execution >
58+ <id >attach-sources</id >
59+ <goals >
60+ <goal >jar</goal >
61+ </goals >
62+ </execution >
63+ </executions >
64+ </plugin >
65+ </plugins >
66+ </build >
67+
68+ <repositories >
69+ <repository >
70+ <id >jitpack.io</id >
71+ <url >https://jitpack.io</url >
72+ </repository >
73+ </repositories >
74+
75+ <dependencies >
76+
77+ <!-- Code related packages -->
78+ <dependency >
79+ <groupId >org.projectlombok</groupId >
80+ <artifactId >lombok</artifactId >
81+ <version >1.18.22</version >
82+ <scope >provided</scope >
83+ </dependency >
84+ <dependency >
85+ <!-- For Eclipse users -->
86+ <groupId >org.jetbrains</groupId >
87+ <artifactId >annotations</artifactId >
88+ <version >19.0.0</version >
89+ <scope >provided</scope >
90+ </dependency >
91+
92+ <dependency >
93+ <groupId >com.github.casterlabs.rakurai</groupId >
94+ <artifactId >Json</artifactId >
95+ <version >1.13.0</version >
96+ <scope >compile</scope >
97+ </dependency >
98+ <dependency >
99+ <groupId >com.github.casterlabs.rakurai</groupId >
100+ <artifactId >Util</artifactId >
101+ <version >1.13.0</version >
102+ <scope >compile</scope >
103+ </dependency >
104+
105+ <dependency >
106+ <groupId >net.java.dev.jna</groupId >
107+ <artifactId >jna</artifactId >
108+ <version >5.10.0</version >
109+ <scope >compile</scope >
110+ </dependency >
111+ <dependency >
112+ <groupId >net.java.dev.jna</groupId >
113+ <artifactId >jna-platform</artifactId >
114+ <version >5.10.0</version >
115+ <scope >compile</scope >
116+ </dependency >
117+
118+ </dependencies >
119+
120+ </project >
0 commit comments