pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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>consumer-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>consumer-store</artifactId>
  13. <description>店铺消费者</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-web</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.baomidou</groupId>
  21. <artifactId>mybatis-plus-boot-starter</artifactId>
  22. <exclusions>
  23. <exclusion>
  24. <groupId>com.baomidou</groupId>
  25. <artifactId>mybatis-plus-generator</artifactId>
  26. </exclusion>
  27. </exclusions>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.alibaba</groupId>
  31. <artifactId>druid-spring-boot-starter</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>mysql</groupId>
  35. <artifactId>mysql-connector-java</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>junit</groupId>
  39. <artifactId>junit</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.qls</groupId>
  43. <artifactId>ali-api</artifactId>
  44. <version>1.0.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.qls</groupId>
  48. <artifactId>mt-api</artifactId>
  49. <version>1.0.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.qls</groupId>
  53. <artifactId>core</artifactId>
  54. <version>1.0.0</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.qls</groupId>
  58. <artifactId>rabbitmq</artifactId>
  59. <version>1.0.0</version>
  60. <scope>compile</scope>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <finalName>${artifactId}-${version}-qls-mt</finalName>
  65. <plugins>
  66. <plugin>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-maven-plugin</artifactId>
  69. <executions>
  70. <execution>
  71. <goals>
  72. <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
  73. </goals>
  74. </execution>
  75. </executions>
  76. </plugin>
  77. </plugins>
  78. </build>
  79. </project>