pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.0-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. <!-- mybatis start-->
  31. <dependency>
  32. <groupId>org.mybatis.spring.boot</groupId>
  33. <artifactId>mybatis-spring-boot-starter</artifactId>
  34. <version>1.0.2</version>
  35. </dependency>
  36. <!--mybatis end-->
  37. <!-- cglib -->
  38. <dependency>
  39. <groupId>cglib</groupId>
  40. <artifactId>cglib-nodep</artifactId>
  41. <version>${cglib.version}</version>
  42. </dependency>
  43. </dependencies>
  44. </project>