pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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. <parent>
  6. <artifactId>ruoyi-vue-plus</artifactId>
  7. <groupId>org.dromara</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>ruoyi-admin</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <!-- Mysql驱动包 -->
  18. <dependency>
  19. <groupId>com.mysql</groupId>
  20. <artifactId>mysql-connector-j</artifactId>
  21. </dependency>
  22. <!-- Oracle -->
  23. <dependency>
  24. <groupId>com.oracle.database.jdbc</groupId>
  25. <artifactId>ojdbc8</artifactId>
  26. </dependency>
  27. <!-- PostgreSql -->
  28. <dependency>
  29. <groupId>org.postgresql</groupId>
  30. <artifactId>postgresql</artifactId>
  31. </dependency>
  32. <!-- SqlServer -->
  33. <dependency>
  34. <groupId>com.microsoft.sqlserver</groupId>
  35. <artifactId>mssql-jdbc</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.dromara</groupId>
  39. <artifactId>ruoyi-common-doc</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.dromara</groupId>
  43. <artifactId>ruoyi-common-social</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.dromara</groupId>
  47. <artifactId>ruoyi-common-ratelimiter</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.dromara</groupId>
  51. <artifactId>ruoyi-system</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.dromara</groupId>
  55. <artifactId>ruoyi-job</artifactId>
  56. </dependency>
  57. <!-- 代码生成-->
  58. <dependency>
  59. <groupId>org.dromara</groupId>
  60. <artifactId>ruoyi-generator</artifactId>
  61. </dependency>
  62. <!-- demo模块 -->
  63. <dependency>
  64. <groupId>org.dromara</groupId>
  65. <artifactId>ruoyi-demo</artifactId>
  66. </dependency>
  67. <!-- 工作流模块 -->
  68. <dependency>
  69. <groupId>org.dromara</groupId>
  70. <artifactId>ruoyi-workflow</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>de.codecentric</groupId>
  74. <artifactId>spring-boot-admin-starter-client</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-test</artifactId>
  79. <scope>test</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>me.zhyd.oauth</groupId>
  83. <artifactId>JustAuth</artifactId>
  84. </dependency>
  85. <!-- SnailJob client -->
  86. <dependency>
  87. <groupId>com.aizuda</groupId>
  88. <artifactId>snail-job-client-starter</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.aizuda</groupId>
  92. <artifactId>snail-job-client-job-core</artifactId>
  93. </dependency>
  94. <!-- skywalking 整合 logback -->
  95. <!-- <dependency>-->
  96. <!-- <groupId>org.apache.skywalking</groupId>-->
  97. <!-- <artifactId>apm-toolkit-logback-1.x</artifactId>-->
  98. <!-- <version>${与你的agent探针版本保持一致}</version>-->
  99. <!-- </dependency>-->
  100. <!-- <dependency>-->
  101. <!-- <groupId>org.apache.skywalking</groupId>-->
  102. <!-- <artifactId>apm-toolkit-trace</artifactId>-->
  103. <!-- <version>${与你的agent探针版本保持一致}</version>-->
  104. <!-- </dependency>-->
  105. </dependencies>
  106. <build>
  107. <finalName>${project.artifactId}</finalName>
  108. <plugins>
  109. <plugin>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-maven-plugin</artifactId>
  112. <version>${spring-boot.version}</version>
  113. <executions>
  114. <execution>
  115. <goals>
  116. <goal>repackage</goal>
  117. </goals>
  118. </execution>
  119. </executions>
  120. </plugin>
  121. <plugin>
  122. <groupId>org.apache.maven.plugins</groupId>
  123. <artifactId>maven-jar-plugin</artifactId>
  124. <version>${maven-jar-plugin.version}</version>
  125. </plugin>
  126. <plugin>
  127. <groupId>org.apache.maven.plugins</groupId>
  128. <artifactId>maven-war-plugin</artifactId>
  129. <version>${maven-war-plugin.version}</version>
  130. <configuration>
  131. <failOnMissingWebXml>false</failOnMissingWebXml>
  132. <warName>${project.artifactId}</warName>
  133. </configuration>
  134. </plugin>
  135. </plugins>
  136. </build>
  137. </project>