.flattened-pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.dromara</groupId>
  7. <artifactId>ruoyi-visual</artifactId>
  8. <version>2.4.1</version>
  9. </parent>
  10. <groupId>org.dromara</groupId>
  11. <artifactId>ruoyi-snailjob-server</artifactId>
  12. <version>2.4.1</version>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.aizuda</groupId>
  16. <artifactId>snail-job-server-starter</artifactId>
  17. <version>${snailjob.version}</version>
  18. <exclusions>
  19. <exclusion>
  20. <groupId>org.scala-lang</groupId>
  21. <artifactId>scala-library</artifactId>
  22. </exclusion>
  23. </exclusions>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.scala-lang</groupId>
  27. <artifactId>scala-library</artifactId>
  28. <version>2.13.9</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.dromara</groupId>
  32. <artifactId>ruoyi-common-nacos</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>de.codecentric</groupId>
  36. <artifactId>spring-boot-admin-starter-client</artifactId>
  37. <version>${spring-boot-admin.version}</version>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <finalName>${project.artifactId}</finalName>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-maven-plugin</artifactId>
  46. <version>${spring-boot.version}</version>
  47. <executions>
  48. <execution>
  49. <goals>
  50. <goal>repackage</goal>
  51. </goals>
  52. </execution>
  53. </executions>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. </project>