76 lines
1.8 KiB
XML
76 lines
1.8 KiB
XML
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.data.examples</groupId>
|
|
<artifactId>spring-data-jdbc-examples</artifactId>
|
|
<version>2.0.0.BUILD-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<name>Spring Data JDBC - jMolecules Example</name>
|
|
<artifactId>spring-data-jdbc-jmolecules</artifactId>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jmolecules</groupId>
|
|
<artifactId>jmolecules-bom</artifactId>
|
|
<version>2023.0.0</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<!-- jMolecules -->
|
|
|
|
<dependency>
|
|
<groupId>org.jmolecules.integrations</groupId>
|
|
<artifactId>jmolecules-spring</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jmolecules</groupId>
|
|
<artifactId>jmolecules-events</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jmolecules.integrations</groupId>
|
|
<artifactId>jmolecules-bytebuddy-nodep</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>net.bytebuddy</groupId>
|
|
<artifactId>byte-buddy-maven-plugin</artifactId>
|
|
<version>${byte-buddy.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>transform-extended</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<classPathDiscovery>true</classPathDiscovery>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|