pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>hsweb-framework</artifactId>
  7. <groupId>org.hsweb</groupId>
  8. <version>1.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-web-dao-impl-mybatis</artifactId>
  12. <properties>
  13. <mybatis.version>3.3.2</mybatis.version>
  14. <mybatis.spring.version>1.2.3</mybatis.spring.version>
  15. <druid.version>1.0.5</druid.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.hsweb</groupId>
  20. <artifactId>hsweb-web-dao-interface</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-jdbc</artifactId>
  25. </dependency>
  26. <!-- mybatis start-->
  27. <dependency>
  28. <groupId>org.mybatis.spring.boot</groupId>
  29. <artifactId>mybatis-spring-boot-starter</artifactId>
  30. <version>1.0.2</version>
  31. </dependency>
  32. <!--mybatis end-->
  33. <!-- cglib -->
  34. <dependency>
  35. <groupId>cglib</groupId>
  36. <artifactId>cglib-nodep</artifactId>
  37. <version>${cglib.version}</version>
  38. </dependency>
  39. <!-- DruidDataSource -->
  40. <dependency>
  41. <groupId>com.alibaba</groupId>
  42. <artifactId>druid</artifactId>
  43. <version>${druid.version}</version>
  44. </dependency>
  45. </dependencies>
  46. </project>