pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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>mt-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>mt-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>com.qls</groupId>
  24. <artifactId>lock</artifactId>
  25. <version>1.0.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-data-redis</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.commons</groupId>
  33. <artifactId>commons-pool2</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.baomidou</groupId>
  37. <artifactId>mybatis-plus-boot-starter</artifactId>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>com.baomidou</groupId>
  41. <artifactId>mybatis-plus-generator</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>druid-spring-boot-starter</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>mysql</groupId>
  51. <artifactId>mysql-connector-java</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.projectlombok</groupId>
  55. <artifactId>lombok</artifactId>
  56. <version>${lombok.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.qls</groupId>
  60. <artifactId>feign</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>junit</groupId>
  70. <artifactId>junit</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.qls</groupId>
  74. <artifactId>rabbitmq</artifactId>
  75. <version>1.0.0</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.qls</groupId>
  80. <artifactId>ali-api</artifactId>
  81. <version>1.0.0</version>
  82. <scope>compile</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.qls</groupId>
  86. <artifactId>mt-module</artifactId>
  87. <version>1.0.0</version>
  88. <scope>compile</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.qls</groupId>
  92. <artifactId>mt-module</artifactId>
  93. <version>1.0.0</version>
  94. <scope>compile</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>dom4j</groupId>
  98. <artifactId>dom4j</artifactId>
  99. <version>1.6.1</version>
  100. </dependency>
  101. </dependencies>
  102. <build>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-maven-plugin</artifactId>
  107. <executions>
  108. <execution>
  109. <goals>
  110. <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
  111. </goals>
  112. </execution>
  113. </executions>
  114. </plugin>
  115. </plugins>
  116. </build>
  117. </project>