pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>org.dromara</groupId>
  6. <artifactId>ruoyi-visual</artifactId>
  7. <version>${revision}</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>ruoyi-monitor</artifactId>
  11. <description>
  12. ruoyi-monitor监控中心
  13. </description>
  14. <dependencies>
  15. <!-- SpringBoot Admin -->
  16. <dependency>
  17. <groupId>de.codecentric</groupId>
  18. <artifactId>spring-boot-admin-starter-server</artifactId>
  19. <version>${spring-boot-admin.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.dromara</groupId>
  23. <artifactId>ruoyi-common-nacos</artifactId>
  24. </dependency>
  25. <!-- SpringBoot Web容器 -->
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. <exclusions>
  30. <exclusion>
  31. <artifactId>spring-boot-starter-tomcat</artifactId>
  32. <groupId>org.springframework.boot</groupId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36. <!-- web 容器使用 undertow 性能更强 -->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-undertow</artifactId>
  40. </dependency>
  41. <!-- Spring Security -->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-security</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.projectlombok</groupId>
  48. <artifactId>lombok</artifactId>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <finalName>${project.artifactId}</finalName>
  53. <plugins>
  54. <plugin>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-maven-plugin</artifactId>
  57. <version>${spring-boot.version}</version>
  58. <executions>
  59. <execution>
  60. <goals>
  61. <goal>repackage</goal>
  62. </goals>
  63. </execution>
  64. </executions>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>