63 lines
1.7 KiB
XML
63 lines
1.7 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-mongodb-examples</artifactId>
|
|
<version>2.0.0.BUILD-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<name>Spring Data MongoDB - jMolecules Example</name>
|
|
<artifactId>spring-data-mongodb-jmolecules</artifactId>
|
|
|
|
<properties>
|
|
<spring-data-bom.version>2021.0.0-SNAPSHOT</spring-data-bom.version>
|
|
<jmolecules.version>1.2.0</jmolecules.version>
|
|
<jmolecules-integration.version>0.2.0</jmolecules-integration.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<!-- jMolecules -->
|
|
|
|
<dependency>
|
|
<groupId>org.jmolecules.integrations</groupId>
|
|
<artifactId>jmolecules-spring</artifactId>
|
|
<version>${jmolecules-integration.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jmolecules</groupId>
|
|
<artifactId>jmolecules-events</artifactId>
|
|
<version>${jmolecules.version}</version>
|
|
</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</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jmolecules.integrations</groupId>
|
|
<artifactId>jmolecules-bytebuddy</artifactId>
|
|
<version>${jmolecules-integration.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |