120 lines
4.3 KiB
XML
120 lines
4.3 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>
|
|
<artifactId>blaze-persistence</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<name>blaze-persistence</name>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>parent-boot-3</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<relativePath>../../parent-boot-3</relativePath>
|
|
</parent>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.blazebit</groupId>
|
|
<artifactId>blaze-persistence-bom</artifactId>
|
|
<version>${blaze-persistence.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
</dependency>
|
|
<!-- Core dependencies -->
|
|
<dependency>
|
|
<groupId>com.blazebit</groupId>
|
|
<artifactId>blaze-persistence-core-api-jakarta</artifactId>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.blazebit</groupId>
|
|
<artifactId>blaze-persistence-core-impl-jakarta</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.blazebit</groupId>
|
|
<artifactId>blaze-persistence-integration-hibernate-6.2</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<!-- Entity View dependencies -->
|
|
<dependency>
|
|
<groupId>com.blazebit</groupId>
|
|
<artifactId>blaze-persistence-entity-view-api-jakarta</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.blazebit</groupId>
|
|
<artifactId>blaze-persistence-entity-view-impl-jakarta</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.blazebit</groupId>
|
|
<artifactId>blaze-persistence-entity-view-processor-jakarta</artifactId>
|
|
</dependency>
|
|
<!-- Spring integration dependencies -->
|
|
<dependency>
|
|
<groupId>com.blazebit</groupId>
|
|
<artifactId>blaze-persistence-integration-entity-view-spring-6.0</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.blazebit</groupId>
|
|
<artifactId>blaze-persistence-integration-spring-data-3.1</artifactId>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- Spring dependencies -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-orm</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
</dependency>
|
|
<!-- Test dependencies -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<blaze-persistence.version>1.6.11</blaze-persistence.version>
|
|
</properties>
|
|
|
|
</project> |