1
0

pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.siwei</groupId>
  6. <artifactId>siwei-modules</artifactId>
  7. <version>3.6.5</version>
  8. </parent>
  9. <artifactId>siwei-apply</artifactId>
  10. <name>Archetype - siwei-apply</name>
  11. <url>http://maven.apache.org</url>
  12. <dependencies>
  13. <!-- SpringCloud Alibaba Nacos -->
  14. <dependency>
  15. <groupId>com.alibaba.cloud</groupId>
  16. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  17. </dependency>
  18. <!-- SpringCloud Alibaba Nacos Config -->
  19. <dependency>
  20. <groupId>com.alibaba.cloud</groupId>
  21. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  22. </dependency>
  23. <!-- SpringCloud Alibaba Sentinel -->
  24. <dependency>
  25. <groupId>com.alibaba.cloud</groupId>
  26. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  27. </dependency>
  28. <!-- SpringBoot Actuator -->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-actuator</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.postgresql</groupId>
  35. <artifactId>postgresql</artifactId>
  36. </dependency>
  37. <!-- siwei Common DataSource -->
  38. <dependency>
  39. <groupId>com.siwei</groupId>
  40. <artifactId>siwei-common-datasource</artifactId>
  41. </dependency>
  42. <!-- siwei Common DataScope -->
  43. <dependency>
  44. <groupId>com.siwei</groupId>
  45. <artifactId>siwei-common-datascope</artifactId>
  46. </dependency>
  47. <!-- siwei Common Log -->
  48. <dependency>
  49. <groupId>com.siwei</groupId>
  50. <artifactId>siwei-common-log</artifactId>
  51. </dependency>
  52. <!-- siwei Common Swagger -->
  53. <dependency>
  54. <groupId>com.siwei</groupId>
  55. <artifactId>siwei-common-swagger</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.projectlombok</groupId>
  59. <artifactId>lombok</artifactId>
  60. <scope>provided</scope>
  61. </dependency>
  62. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  63. <dependency>
  64. <groupId>org.apache.httpcomponents</groupId>
  65. <artifactId>httpcore</artifactId>
  66. <version>4.4.10</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.httpcomponents</groupId>
  70. <artifactId>httpmime</artifactId>
  71. <version>4.5.6</version>
  72. </dependency>
  73. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  74. <dependency>
  75. <groupId>org.apache.httpcomponents</groupId>
  76. <artifactId>httpclient</artifactId>
  77. <version>4.5.6</version>
  78. </dependency>
  79. </dependencies>
  80. <build>
  81. <finalName>${project.artifactId}</finalName>
  82. <plugins>
  83. <plugin>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-maven-plugin</artifactId>
  86. <executions>
  87. <execution>
  88. <goals>
  89. <goal>repackage</goal>
  90. </goals>
  91. </execution>
  92. </executions>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. </project>