pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.va.shWasher</groupId>
  8. <artifactId>ShWasherAdmin</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>sw-admin</artifactId>
  12. <name>${project.artifactId}</name>
  13. <description>web服务入口</description>
  14. <dependencies>
  15. <!-- Mysql驱动包 -->
  16. <dependency>
  17. <groupId>com.mysql</groupId>
  18. <artifactId>mysql-connector-j</artifactId>
  19. </dependency>
  20. <!-- PostgreSql -->
  21. <dependency>
  22. <groupId>org.postgresql</groupId>
  23. <artifactId>postgresql</artifactId>
  24. </dependency>
  25. <!-- &lt;!&ndash; mp支持的数据库均支持 只需要增加对应的jdbc依赖即可 &ndash;&gt;-->
  26. <!-- &lt;!&ndash; Oracle &ndash;&gt;-->
  27. <!-- <dependency>-->
  28. <!-- <groupId>com.oracle.database.jdbc</groupId>-->
  29. <!-- <artifactId>ojdbc8</artifactId>-->
  30. <!-- </dependency>-->
  31. <!-- &lt;!&ndash; PostgreSql &ndash;&gt;-->
  32. <!-- <dependency>-->
  33. <!-- <groupId>org.postgresql</groupId>-->
  34. <!-- <artifactId>postgresql</artifactId>-->
  35. <!-- </dependency>-->
  36. <!-- &lt;!&ndash; SqlServer &ndash;&gt;-->
  37. <!-- <dependency>-->
  38. <!-- <groupId>com.microsoft.sqlserver</groupId>-->
  39. <!-- <artifactId>mssql-jdbc</artifactId>-->
  40. <!-- </dependency>-->
  41. <dependency>
  42. <groupId>com.va.shWasher</groupId>
  43. <artifactId>sw-common-doc</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.va.shWasher</groupId>
  47. <artifactId>sw-common-social</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.va.shWasher</groupId>
  51. <artifactId>sw-common-ratelimiter</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.va.shWasher</groupId>
  55. <artifactId>sw-system</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.va.shWasher</groupId>
  59. <artifactId>sw-job</artifactId>
  60. </dependency>
  61. <!-- <dependency>-->
  62. <!-- <groupId>com.va.shWasher</groupId>-->
  63. <!-- <artifactId>sw-workflow</artifactId>-->
  64. <!-- </dependency>-->
  65. <!-- 代码生成-->
  66. <dependency>
  67. <groupId>com.va.shWasher</groupId>
  68. <artifactId>sw-generator</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>de.codecentric</groupId>
  72. <artifactId>spring-boot-admin-starter-client</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>me.zhyd.oauth</groupId>
  81. <artifactId>JustAuth</artifactId>
  82. </dependency>
  83. <!-- skywalking 整合 logback -->
  84. <!-- <dependency>-->
  85. <!-- <groupId>org.apache.skywalking</groupId>-->
  86. <!-- <artifactId>apm-toolkit-logback-1.x</artifactId>-->
  87. <!-- <version>${与你的agent探针版本保持一致}</version>-->
  88. <!-- </dependency>-->
  89. <!-- <dependency>-->
  90. <!-- <groupId>org.apache.skywalking</groupId>-->
  91. <!-- <artifactId>apm-toolkit-trace</artifactId>-->
  92. <!-- <version>${与你的agent探针版本保持一致}</version>-->
  93. <!-- </dependency>-->
  94. </dependencies>
  95. <build>
  96. <finalName>${project.artifactId}</finalName>
  97. <plugins>
  98. <plugin>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-maven-plugin</artifactId>
  101. <version>${spring-boot.version}</version>
  102. <executions>
  103. <execution>
  104. <goals>
  105. <goal>repackage</goal>
  106. </goals>
  107. </execution>
  108. </executions>
  109. </plugin>
  110. <plugin>
  111. <groupId>org.apache.maven.plugins</groupId>
  112. <artifactId>maven-jar-plugin</artifactId>
  113. <version>${maven-jar-plugin.version}</version>
  114. </plugin>
  115. <plugin>
  116. <groupId>org.apache.maven.plugins</groupId>
  117. <artifactId>maven-war-plugin</artifactId>
  118. <version>${maven-war-plugin.version}</version>
  119. <configuration>
  120. <failOnMissingWebXml>false</failOnMissingWebXml>
  121. <warName>${project.artifactId}</warName>
  122. </configuration>
  123. </plugin>
  124. </plugins>
  125. </build>
  126. </project>