pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. <parent>
  6. <groupId>com.huashe</groupId>
  7. <artifactId>bd-park</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.huashe.park.application.bd-park</groupId>
  12. <artifactId>park-core</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <description>
  15. park-core核心模块
  16. </description>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <ruoyi.version>3.8.8</ruoyi.version>
  22. <commons.io.version>2.13.0</commons.io.version>
  23. <apache.commons.version>3.12.0</apache.commons.version>
  24. <fastjson.version>2.0.43</fastjson.version>
  25. </properties>
  26. <dependencies>
  27. <!-- Alibaba Fastjson -->
  28. <dependency>
  29. <groupId>com.alibaba.fastjson2</groupId>
  30. <artifactId>fastjson2</artifactId>
  31. <version>${fastjson.version}</version>
  32. </dependency>
  33. <!-- Apache Lang3 -->
  34. <dependency>
  35. <groupId>org.apache.commons</groupId>
  36. <artifactId>commons-lang3</artifactId>
  37. <version>${apache.commons.version}</version>
  38. </dependency>
  39. <!-- Commons Io -->
  40. <dependency>
  41. <groupId>commons-io</groupId>
  42. <artifactId>commons-io</artifactId>
  43. <version>${commons.io.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.huashe.application</groupId>
  47. <artifactId>ruoyi-common</artifactId>
  48. <version>${ruoyi.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.huashe.application</groupId>
  52. <artifactId>ruoyi-quartz</artifactId>
  53. <version>${ruoyi.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.huashe</groupId>
  57. <artifactId>park-common</artifactId>
  58. <version>1.0-SNAPSHOT</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. </dependencies>
  62. <build>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.apache.maven.plugins</groupId>
  66. <artifactId>maven-compiler-plugin</artifactId>
  67. <version>3.8.0</version>
  68. <configuration>
  69. <source>${java.version}</source>
  70. <target>${java.version}</target>
  71. <encoding>${project.build.sourceEncoding}</encoding>
  72. </configuration>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>