61 lines
2.0 KiB
XML
61 lines
2.0 KiB
XML
|
<?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>com.baeldung</groupId>
|
||
|
<artifactId>java-harperdb</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<source>9</source>
|
||
|
<target>9</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.baeldung</groupId>
|
||
|
<artifactId>persistence-modules</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.baeldung</groupId>
|
||
|
<artifactId>java-harperdb</artifactId>
|
||
|
<version>4.2</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${project.basedir}/lib/cdata.jdbc.harperdb.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.testcontainers</groupId>
|
||
|
<artifactId>testcontainers</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.testcontainers</groupId>
|
||
|
<artifactId>testcontainers-bom</artifactId>
|
||
|
<version>1.19.3</version>
|
||
|
<type>pom</type>
|
||
|
<scope>import</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>19</maven.compiler.source>
|
||
|
<maven.compiler.target>19</maven.compiler.target>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
</project>
|