pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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>kd-service</artifactId>
  7. <groupId>org.sky</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>kd-scientific</artifactId>
  12. <name>${project.artifactId}</name>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.sky</groupId>
  17. <artifactId>kd-core-boot</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.sky</groupId>
  21. <artifactId>kd-starter-excel</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.sky</groupId>
  25. <artifactId>kd-starter-swagger</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.sky</groupId>
  29. <artifactId>kd-scientific-api</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.sky</groupId>
  33. <artifactId>kd-system-api</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>cn.hutool</groupId>
  37. <artifactId>hutool-all</artifactId>
  38. <version>5.7.16</version> <!-- 请检查最新版本 -->
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-freemarker</artifactId>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <plugins>
  47. <plugin>
  48. <groupId>io.fabric8</groupId>
  49. <artifactId>docker-maven-plugin</artifactId>
  50. <configuration>
  51. <skip>${docker.fabric.skip}</skip>
  52. </configuration>
  53. </plugin>
  54. <plugin>
  55. <groupId>org.apache.maven.plugins</groupId>
  56. <artifactId>maven-antrun-plugin</artifactId>
  57. </plugin>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-compiler-plugin</artifactId>
  61. <configuration>
  62. <source>16</source>
  63. <target>16</target>
  64. </configuration>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>