pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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>salesHelper</artifactId>
  7. <groupId>com.saleshelper</groupId>
  8. <version>3.8.7</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>salesHelper-admin-common</artifactId>
  12. <description>
  13. 共用web服务入口
  14. </description>
  15. <dependencies>
  16. <!-- Swagger 依赖配置 -->
  17. <dependency>
  18. <groupId>io.swagger</groupId>
  19. <artifactId>swagger-models</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>io.swagger</groupId>
  23. <artifactId>swagger-annotations</artifactId>
  24. </dependency>
  25. <!-- Mysql驱动包 -->
  26. <dependency>
  27. <groupId>com.mysql</groupId>
  28. <artifactId>mysql-connector-j</artifactId>
  29. </dependency>
  30. <!-- 核心模块-->
  31. <!-- <dependency>
  32. <groupId>com.saleshelper</groupId>
  33. <artifactId>salesHelper-framework</artifactId>
  34. </dependency>-->
  35. <!-- 定时任务-->
  36. <dependency>
  37. <groupId>com.saleshelper</groupId>
  38. <artifactId>salesHelper-quartz</artifactId>
  39. </dependency>
  40. <!-- 代码生成-->
  41. <dependency>
  42. <groupId>com.saleshelper</groupId>
  43. <artifactId>salesHelper-generator</artifactId>
  44. </dependency>
  45. <!-- 预言模块-->
  46. <dependency>
  47. <groupId>com.yuyan</groupId>
  48. <artifactId>salesHelper-yuyan</artifactId>
  49. </dependency>
  50. <!-- 测试所需 -->
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-test</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>junit</groupId>
  58. <artifactId>junit</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>junit</groupId>
  63. <artifactId>junit</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.mariadb.jdbc</groupId>
  68. <artifactId>mariadb-java-client</artifactId>
  69. </dependency>
  70. </dependencies>
  71. </project>