pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.xyzc</groupId>
  8. <artifactId>XyZc_Web_Start</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>xyzc-start</artifactId>
  12. <packaging>jar</packaging>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <!-- XyZc Api Pay -->
  18. <dependency>
  19. <groupId>com.xyzc</groupId>
  20. <artifactId>xyzc-api-resource</artifactId>
  21. </dependency>
  22. <!-- sms服务 -->
  23. <dependency>
  24. <groupId>com.xyzc</groupId>
  25. <artifactId>xyzc-common-sms</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.xyzc</groupId>
  29. <artifactId>xyzc-common-seata</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.xyzc</groupId>
  33. <artifactId>xyzc-common-nacos</artifactId>
  34. </dependency>
  35. <!-- Mysql驱动包 -->
  36. <dependency>
  37. <groupId>com.mysql</groupId>
  38. <artifactId>mysql-connector-j</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.xyzc</groupId>
  42. <artifactId>xyzc-common-mybatis</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.xyzc</groupId>
  46. <artifactId>xyzc-common-redis</artifactId>
  47. </dependency>
  48. <!--dns解析包-->
  49. <dependency>
  50. <groupId>dnsjava</groupId>
  51. <artifactId>dnsjava</artifactId>
  52. </dependency>
  53. <!-- lombok注解 -->
  54. <dependency>
  55. <groupId>org.projectlombok</groupId>
  56. <artifactId>lombok</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>de.codecentric</groupId>
  60. <artifactId>spring-boot-admin-starter-client</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.xyzc</groupId>
  64. <artifactId>xyzc-common-weixin</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.xyzc</groupId>
  68. <artifactId>xyzc-common-doc</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.xyzc</groupId>
  72. <artifactId>xyzc-common-dubbo</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-test</artifactId>
  77. <scope>test</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.xyzc</groupId>
  81. <artifactId>xyzc-common-web</artifactId>
  82. </dependency>
  83. </dependencies>
  84. <build>
  85. <finalName>${project.artifactId}</finalName>
  86. <plugins>
  87. <plugin>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-maven-plugin</artifactId>
  90. <version>${spring-boot.version}</version>
  91. <executions>
  92. <execution>
  93. <goals>
  94. <goal>repackage</goal>
  95. </goals>
  96. </execution>
  97. </executions>
  98. </plugin>
  99. <plugin>
  100. <groupId>org.apache.maven.plugins</groupId>
  101. <artifactId>maven-jar-plugin</artifactId>
  102. <version>${maven-jar-plugin.version}</version>
  103. </plugin>
  104. <plugin>
  105. <groupId>org.apache.maven.plugins</groupId>
  106. <artifactId>maven-war-plugin</artifactId>
  107. <version>${maven-war-plugin.version}</version>
  108. <configuration>
  109. <failOnMissingWebXml>false</failOnMissingWebXml>
  110. <warName>${project.artifactId}</warName>
  111. </configuration>
  112. </plugin>
  113. </plugins>
  114. </build>
  115. </project>