pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. <!--test-->
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-test</artifactId>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.alibaba</groupId>
  26. <artifactId>druid</artifactId>
  27. <version>1.0.26</version>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.hsweb</groupId>
  32. <artifactId>hsweb-web-dao-api</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.hsweb</groupId>
  36. <artifactId>hsweb-web-core</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-jdbc</artifactId>
  41. </dependency>
  42. <!--<dependency>-->
  43. <!--<groupId>org.hsweb</groupId>-->
  44. <!--<artifactId>hsweb-web-datasource</artifactId>-->
  45. <!--<optional>true</optional>-->
  46. <!--</dependency>-->
  47. <!-- mybatis start-->
  48. <dependency>
  49. <groupId>org.mybatis.spring.boot</groupId>
  50. <artifactId>mybatis-spring-boot-starter</artifactId>
  51. <version>1.0.2</version>
  52. </dependency>
  53. <!--mybatis end-->
  54. <!-- cglib -->
  55. <dependency>
  56. <groupId>cglib</groupId>
  57. <artifactId>cglib-nodep</artifactId>
  58. <version>${cglib.version}</version>
  59. </dependency>
  60. </dependencies>
  61. </project>