123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>hsweb-framework</artifactId>
- <groupId>org.hsweb</groupId>
- <version>1.0.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>hsweb-web-dao-impl-mybatis</artifactId>
- <properties>
- <mybatis.version>3.3.2</mybatis.version>
- <mybatis.spring.version>1.2.3</mybatis.spring.version>
- <druid.version>1.0.5</druid.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.hsweb</groupId>
- <artifactId>hsweb-web-dao-interface</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-jdbc</artifactId>
- </dependency>
- <!-- mybatis start-->
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>1.0.2</version>
- </dependency>
- <!--mybatis end-->
- <!-- cglib -->
- <dependency>
- <groupId>cglib</groupId>
- <artifactId>cglib-nodep</artifactId>
- <version>${cglib.version}</version>
- </dependency>
- </dependencies>
- </project>
|