1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?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-web-dao</artifactId>
- <groupId>org.hsweb</groupId>
- <version>2.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>hsweb-web-dao-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-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.hsweb</groupId>
- <artifactId>hsweb-web-core</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>
|