pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>ali-manager</artifactId>
  7. <groupId>com.qls</groupId>
  8. <version>1.0.0</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>ali-biz</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-web</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-amqp</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework</groupId>
  24. <artifactId>spring-context-support</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.apache.commons</groupId>
  28. <artifactId>commons-pool2</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.baomidou</groupId>
  32. <artifactId>mybatis-plus-boot-starter</artifactId>
  33. <exclusions>
  34. <exclusion>
  35. <groupId>com.baomidou</groupId>
  36. <artifactId>mybatis-plus-generator</artifactId>
  37. </exclusion>
  38. </exclusions>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.alibaba</groupId>
  42. <artifactId>druid-spring-boot-starter</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>mysql</groupId>
  46. <artifactId>mysql-connector-java</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.projectlombok</groupId>
  50. <artifactId>lombok</artifactId>
  51. <version>${lombok.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.qls</groupId>
  55. <artifactId>core</artifactId>
  56. <version>1.0.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.qls</groupId>
  60. <artifactId>rabbitmq</artifactId>
  61. <version>1.0.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.qls</groupId>
  65. <artifactId>redis</artifactId>
  66. <version>1.0.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.qls</groupId>
  70. <artifactId>ali-model</artifactId>
  71. <version>1.0.0</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.qls</groupId>
  75. <artifactId>lock</artifactId>
  76. <version>1.0.0</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.thoughtworks.xstream</groupId>
  80. <artifactId>xstream</artifactId>
  81. <version>1.4.14</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>dom4j</groupId>
  85. <artifactId>dom4j</artifactId>
  86. <version>1.6.1</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.qls</groupId>
  90. <artifactId>mt-api</artifactId>
  91. <version>1.0.0</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.hankcs</groupId>
  95. <artifactId>hanlp</artifactId>
  96. <version>portable-1.7.3</version>
  97. </dependency>
  98. </dependencies>
  99. <build>
  100. <plugins>
  101. <plugin>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-maven-plugin</artifactId>
  104. <executions>
  105. <execution>
  106. <goals>
  107. <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
  108. </goals>
  109. </execution>
  110. </executions>
  111. </plugin>
  112. </plugins>
  113. </build>
  114. </project>