spring-data-rest-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-rest-core</artifactId> <version>5.0.0-M1</version> </dependency>
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>spring-data-rest-core</artifactId> <name>Spring Data REST - Core</name> <description>Spring Data REST - Core</description> <parent> <groupId>org.springframework.data</groupId> <artifactId>spring-data-rest-parent</artifactId> <version>5.0.0-M1</version> <relativePath>../pom.xml</relativePath> </parent> <properties> <evoinflector>1.3</evoinflector> <java-module-name>spring.data.rest.core</java-module-name> <project.root>${basedir}/..</project.root> </properties> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> </dependency> <dependency> <groupId>org.springframework.hateoas</groupId> <artifactId>spring-hateoas</artifactId> <version>${spring-hateoas}</version> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-commons</artifactId> <version>${springdata.commons}</version> </dependency> <dependency> <groupId>org.springframework.plugin</groupId> <artifactId>spring-plugin-core</artifactId> <version>${spring-plugin}</version> </dependency> <dependency> <groupId>org.atteo</groupId> <artifactId>evo-inflector</artifactId> <version>${evoinflector}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jdk8</artifactId> </dependency> <dependency> <groupId>org.jmolecules</groupId> <artifactId>jmolecules-ddd</artifactId> <version>${jmolecules}</version> <optional>true</optional> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-keyvalue</artifactId> <version>${springdata.keyvalue}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jmolecules.integrations</groupId> <artifactId>jmolecules-spring</artifactId> <version>${jmolecules-integration}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${source.level}</source> <target>${source.level}</target> <compilerArgument>-parameters</compilerArgument> </configuration> </plugin> </plugins> </build> </project>