Skip to content

Commit 6530924

Browse files
Initial commit
0 parents  commit 6530924

File tree

12 files changed

+1100
-0
lines changed

12 files changed

+1100
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
*.war
15+
*.nar
16+
*.ear
17+
*.zip
18+
*.tar.gz
19+
*.rar
20+
21+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
22+
hs_err_pid*
23+
replay_pid*
24+
25+
# IntelliJ
26+
*.idea
27+
*.iml
28+
target

pom.xml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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>net.escosoft</groupId>
8+
<artifactId>mysql-wrapper</artifactId>
9+
<version>1.0</version>
10+
<packaging>jar</packaging>
11+
12+
<description>Simple and lightweight MySQL database wrapper.</description>
13+
14+
<properties>
15+
<java.version>11</java.version>
16+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17+
</properties>
18+
19+
<dependencies>
20+
<!-- Lombok -->
21+
<dependency>
22+
<groupId>org.projectlombok</groupId>
23+
<artifactId>lombok</artifactId>
24+
<version>1.18.36</version>
25+
<scope>provided</scope>
26+
</dependency>
27+
<!-- MySQL -->
28+
<dependency>
29+
<groupId>com.mysql</groupId>
30+
<artifactId>mysql-connector-j</artifactId>
31+
<version>9.2.0</version>
32+
<scope>provided</scope>
33+
</dependency>
34+
<!-- HikariCP -->
35+
<dependency>
36+
<groupId>com.zaxxer</groupId>
37+
<artifactId>HikariCP</artifactId>
38+
<version>5.1.0</version>
39+
<scope>provided</scope>
40+
</dependency>
41+
<!-- SLF4J -->
42+
<dependency>
43+
<groupId>org.slf4j</groupId>
44+
<artifactId>slf4j-api</artifactId>
45+
<version>2.0.15</version>
46+
<scope>provided</scope>
47+
</dependency>
48+
</dependencies>
49+
50+
<build>
51+
<plugins>
52+
<plugin>
53+
<groupId>org.apache.maven.plugins</groupId>
54+
<artifactId>maven-compiler-plugin</artifactId>
55+
<configuration>
56+
<source>${java.version}</source>
57+
<target>${java.version}</target>
58+
</configuration>
59+
</plugin>
60+
</plugins>
61+
</build>
62+
</project>

0 commit comments

Comments
 (0)