-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
91 lines (78 loc) · 3.2 KB
/
pom.xml
File metadata and controls
91 lines (78 loc) · 3.2 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
<?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>edu.baylor.ecs.csi3471</groupId>
<artifactId>GroupProject</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>25</maven.compiler.source>
<maven.compiler.target>25</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!-- Source: https://mvnrepository.com/artifact/net.coderazzi/tablefilter-swing -->
<dependencies>
<dependency>
<groupId>net.coderazzi</groupId>
<artifactId>tablefilter-swing</artifactId>
<version>5.3.1</version>
<scope>compile</scope>
</dependency>
<!--Was able to do this through this command:
mvn install:install-file -Dfile=libs/mysql-connector-j-9.6.0.jar -DgroupId=libs.database
-DartifactId=mysql-connector-j-9.6.0-jar -Dversion=1.0 -Dpackaging=jar
-->
<dependency>
<groupId>libs.database</groupId>
<artifactId>mysql-connector-j-9.6.0-jar</artifactId>
<version>1.0</version>
</dependency>
<!-- For text field prompts (hints) -->
<dependency>
<groupId>org.swinglabs</groupId>
<artifactId>swingx</artifactId>
<version>1.6.1</version>
<scope>compile</scope>
</dependency>
<!-- Source: https://mvnrepository.com/artifact/com.formdev/flatlaf -->
<!-- For design (initialized in main) -->
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
<version>3.7.1</version>
</dependency>
<!-- For sqlite database -->
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>RELEASE</version>
</dependency>
<!-- For checking credit card number -->
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
<version>RELEASE</version>
</dependency>
<!-- For phone number checking -->
<dependency>
<groupId>com.googlecode.libphonenumber</groupId>
<artifactId>libphonenumber</artifactId>
<version>RELEASE</version> <!-- Check for the latest version on Maven Central -->
</dependency>
<!-- JUnit -->
<!-- JUNIT -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>RELEASE</version> <!-- Check for the latest version -->
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>RELEASE</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>