-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
42 lines (37 loc) · 1.46 KB
/
pom.xml
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
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>dolt-jdbc-sample</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Dolt JDBC Sample</name>
<url>https://doltdb.com</url>
<properties>
<maven.compiler.source>11</maven.compiler.source> <!-- Specify Java version -->
<maven.compiler.target>11</maven.compiler.target>
</properties>
<dependencies>
<!-- MySQL JDBC Driver -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.33</version> <!-- Ensure you use the latest version -->
</dependency>
</dependencies>
<build>
<plugins>
<!-- Maven Compiler Plugin for compiling Java code -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>11</source> <!-- Use Java 11 or the version you prefer -->
<target>11</target>
</configuration>
</plugin>
</plugins>
</build>
</project>