spring-data-mybatis
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.easybest</groupId> <artifactId>spring-data-mybatis</artifactId> <version>2.0.1.RELEASE</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> <parent> <groupId>io.easybest</groupId> <artifactId>spring-data-mybatis-parent</artifactId> <version>2.0.1.RELEASE</version> <relativePath>../spring-data-mybatis-parent</relativePath> </parent> <groupId>io.easybest</groupId> <artifactId>spring-data-mybatis</artifactId> <version>2.0.1.RELEASE</version> <name>Spring Data MyBatis</name> <description>Spring Data module for MyBatis repositories.</description> <url>https://github.com/easybest/spring-data-mybatis</url> <organization> <name>EasyBest</name> <url>https://easybest.io</url> </organization> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>jarvis</id> <name>Jarvis Song</name> <email>iamjarvissong@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/easybest/spring-data-mybatis.git</connection> <developerConnection>scm:git:ssh://git@github.com/easybest/spring-data-mybatis.git</developerConnection> <url>https://github.com/easybest/spring-data-mybatis</url> </scm> <dependencies> <dependency> <groupId>io.easybest</groupId> <artifactId>spring-data-mybatis-core</artifactId> <version>2.0.1.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-commons</artifactId> <version>2.3.3.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> <version>2.0.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.samskivert</groupId> <artifactId>jmustache</artifactId> <version>1.15</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>5.2.8.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>5.2.8.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>5.2.8.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-instrument</artifactId> <version>5.2.8.RELEASE</version> <scope>provided</scope> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.10.6</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aspects</artifactId> <version>5.2.8.RELEASE</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.26</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.12</version> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies> </project>