spring-data-batis
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.minlia.cloud.thirdparty</groupId> <artifactId>spring-data-batis</artifactId> <version>1.0.0.RELEASE</version> </dependency>
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.minlia.cloud.thirdparty</groupId> <artifactId>spring-data-batis</artifactId> <version>1.0.0.RELEASE</version> <packaging>jar</packaging> <name>Minlia Thirdparty Spring Data Batis</name> <parent> <groupId>com.minlia.cloud</groupId> <artifactId>minlia-cloud-parent</artifactId> <version>1.0.0.RELEASE</version> <relativePath /> </parent> <description>The primary goal of the Spring Data project is to make it easier to build Spring-powered applications that use data access technologies. This module deals with enhanced support for MyBatis based data access layers. </description> <url>https://github.com/minlia-projects/spring-data-mybatis</url> <developers> <developer> <id>jarvis</id> <name>Jarvis Song</name> <email>iamjarvissong@gmail.com</email> </developer> <developer> <name>will</name> <email>will@minlia.com</email> <organization>minlia</organization> <organizationUrl>https://www.minlia.com</organizationUrl> </developer> <developer> <name>henry lin</name> <email>badcop@163.com</email> <organization>wixdom</organization> <organizationUrl>https://www.wixdom.com</organizationUrl> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <url>https://github.com/minlia-projects/minlia-thirdparty</url> <connection>scm:git:git://github.com/minlia-projects/minlia-thirdparty.git</connection> <developerConnection>scm:git:https://github.com/minlia-projects/minlia-thirdparty.git </developerConnection> <tag>thirdparty-parent-1.0.0.RELEASE</tag> </scm> <properties> <springdata.commons.version>1.13.5.RELEASE</springdata.commons.version> <mybatis.version>3.4.4</mybatis.version> </properties> <dependencies> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-commons</artifactId> <version>${springdata.commons.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>${mybatis.version}</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> <version>1.3.1</version> </dependency> <dependency> <groupId>com.querydsl</groupId> <artifactId>querydsl-core</artifactId> <version>4.1.4</version> <optional>true</optional> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.4.194</version> <scope>test</scope> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.41</version> <scope>test</scope> </dependency> <!--<dependency>--> <!--<groupId>com.oracle</groupId>--> <!--<artifactId>ojdbc14</artifactId>--> <!--<version>10.2.0.4.0</version>--> <!--<scope>test</scope>--> <!--</dependency>--> <dependency> <groupId>net.sourceforge.jtds</groupId> <artifactId>jtds</artifactId> <version>1.3.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>9.4.1212</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.1-api</artifactId> <version>1.0.0.Final</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.projectlombok</groupId> <artifactId>lombok-maven-plugin</artifactId> </plugin> </plugins> </build> </project>