pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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.2.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-web-dao-mybatis</artifactId>
  12. <dependencies>
  13. <!--test-->
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-test</artifactId>
  17. <scope>test</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.alibaba</groupId>
  21. <artifactId>druid</artifactId>
  22. <version>1.0.26</version>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>ch.qos.logback</groupId>
  27. <artifactId>logback-classic</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.h2database</groupId>
  32. <artifactId>h2</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.hsweb</groupId>
  37. <artifactId>hsweb-web-dao-api</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.hsweb</groupId>
  41. <artifactId>hsweb-web-core</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-jdbc</artifactId>
  46. </dependency>
  47. <!--<dependency>-->
  48. <!--<groupId>org.hsweb</groupId>-->
  49. <!--<artifactId>hsweb-web-datasource</artifactId>-->
  50. <!--<optional>true</optional>-->
  51. <!--</dependency>-->
  52. <!-- mybatis start-->
  53. <dependency>
  54. <groupId>org.mybatis.spring.boot</groupId>
  55. <artifactId>mybatis-spring-boot-starter</artifactId>
  56. <version>1.1.1</version>
  57. </dependency>
  58. <!--mybatis end-->
  59. <!-- cglib -->
  60. <dependency>
  61. <groupId>cglib</groupId>
  62. <artifactId>cglib-nodep</artifactId>
  63. <version>${cglib.version}</version>
  64. </dependency>
  65. </dependencies>
  66. </project>