pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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-web-dao</artifactId>
  7. <groupId>org.hsweb</groupId>
  8. <version>2.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-web-dao-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-api</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.hsweb</groupId>
  24. <artifactId>hsweb-web-core</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-jdbc</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.hsweb</groupId>
  32. <artifactId>hsweb-web-datasource</artifactId>
  33. <optional>true</optional>
  34. </dependency>
  35. <!-- mybatis start-->
  36. <dependency>
  37. <groupId>org.mybatis.spring.boot</groupId>
  38. <artifactId>mybatis-spring-boot-starter</artifactId>
  39. <version>1.0.2</version>
  40. </dependency>
  41. <!--mybatis end-->
  42. <!-- cglib -->
  43. <dependency>
  44. <groupId>cglib</groupId>
  45. <artifactId>cglib-nodep</artifactId>
  46. <version>${cglib.version}</version>
  47. </dependency>
  48. </dependencies>
  49. </project>