jmolecules-spring
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jmolecules.integrations</groupId> <artifactId>jmolecules-spring</artifactId> <version>0.26.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>org.jmolecules.integrations</groupId> <artifactId>jmolecules-spring</artifactId> <version>0.26.0</version> <name>jMolecules - Spring runtime integration</name> <description>Modules to integrate jMolecules abstractions with implementation technologies</description> <url>https://github.com/xmolecules/jmolecules-integrations/jmolecules-spring</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <developers> <developer> <id>odrotbohm</id> <name>Oliver Drotbohm</name> <email>odrotbohm@vmware.com</email> <organization>VMware Inc.</organization> <organizationUrl>https://vmware.com</organizationUrl> </developer> <developer> <id>zambrovski</id> <name>Simon Zambrovski</name> <email>simon.zambrovski@holisticon.de</email> <organization>Holisticon AG</organization> <organizationUrl>https://holisticon.de</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/xmolecules/jmolecules-integrations/jmolecules-spring</connection> <developerConnection>scm:git:ssh://git@github.com/xmolecules/jmolecules-integrations.git/jmolecules-spring</developerConnection> <tag>0.26.0</tag> <url>https://github.com/xmolecules/jmolecules-integrations/jmolecules-spring</url> </scm> <dependencies> <dependency> <groupId>org.jmolecules</groupId> <artifactId>jmolecules-ddd</artifactId> <version>1.10.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>5.3.31</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>5.3.31</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.3.31</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-jdbc</artifactId> <version>2.4.18</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-mongodb</artifactId> <version>3.4.18</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <version>2.7.18</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>javax.persistence</groupId> <artifactId>javax.persistence-api</artifactId> <version>2.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> <version>3.0.0</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.13.5</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.30</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.36</version> <scope>compile</scope> </dependency> </dependencies> </project>