1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <modelVersion >4.0.0</modelVersion >
6
+
7
+ <groupId >org.example</groupId >
8
+ <artifactId >lab_04</artifactId >
9
+ <version >1.0-SNAPSHOT</version >
10
+
11
+ <properties >
12
+ <maven .compiler.source>15</maven .compiler.source>
13
+ <maven .compiler.target>15</maven .compiler.target>
14
+ </properties >
15
+ <dependencies >
16
+ <dependency >
17
+ <groupId >org.openjfx</groupId >
18
+ <artifactId >javafx-controls</artifactId >
19
+ <version >13</version >
20
+ </dependency >
21
+ <dependency >
22
+ <groupId >org.openjfx</groupId >
23
+ <artifactId >javafx-fxml</artifactId >
24
+ <version >13</version >
25
+ </dependency >
26
+ <dependency >
27
+ <groupId >com.google.code.gson</groupId >
28
+ <artifactId >gson</artifactId >
29
+ <version >2.8.5</version >
30
+ <scope >compile</scope >
31
+ </dependency >
32
+ <dependency >
33
+ <groupId >org.xerial</groupId >
34
+ <artifactId >sqlite-jdbc</artifactId >
35
+ <version >3.34.0</version >
36
+ </dependency >
37
+ </dependencies >
38
+ <build >
39
+ <plugins >
40
+ <plugin >
41
+ <groupId >org.apache.maven.plugins</groupId >
42
+ <artifactId >maven-compiler-plugin</artifactId >
43
+ <version >3.8.0</version >
44
+ <configuration >
45
+ <release >11</release >
46
+ </configuration >
47
+ </plugin >
48
+ <plugin >
49
+ <groupId >org.openjfx</groupId >
50
+ <artifactId >javafx-maven-plugin</artifactId >
51
+ <version >0.0.3</version >
52
+ <configuration >
53
+ <mainClass >ClientForm</mainClass >
54
+ </configuration >
55
+ </plugin >
56
+ </plugins >
57
+ </build >
58
+ </project >
0 commit comments