pom.xml 3.2 KB

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