pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>ruoyi</artifactId>
  6. <groupId>com.ruoyi</groupId>
  7. <version>3.8.5</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>universal-computing-platform</artifactId>
  11. <version>0.0.1</version>
  12. <name>通用计算平台</name>
  13. <description>通用计算平台</description>
  14. <!-- <properties>-->
  15. <!-- <java.version>1.8</java.version>-->
  16. <!-- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>-->
  17. <!-- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>-->
  18. <!-- <spring-boot.version>2.7.6</spring-boot.version>-->
  19. <!-- </properties>-->
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.postgresql</groupId>
  27. <artifactId>postgresql</artifactId>
  28. <scope>runtime</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.projectlombok</groupId>
  32. <artifactId>lombok</artifactId>
  33. <optional>true</optional>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-test</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-cache</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <!-- 通用工具-->
  46. <dependency>
  47. <groupId>com.ruoyi</groupId>
  48. <artifactId>ruoyi-common</artifactId>
  49. <version>3.8.5</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.alibaba</groupId>
  53. <artifactId>fastjson</artifactId>
  54. <version>2.0.45</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>cn.hutool</groupId>
  58. <artifactId>hutool-all</artifactId>
  59. <version>5.8.25</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.cloud</groupId>
  63. <artifactId>spring-cloud-starter-openfeign</artifactId>
  64. <version>3.1.4</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>io.github.openfeign</groupId>
  68. <artifactId>feign-httpclient</artifactId>
  69. <version>11.9.1</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.alibaba</groupId>
  73. <artifactId>druid-spring-boot-starter</artifactId>
  74. </dependency>
  75. <!-- groovy-all -->
  76. <dependency>
  77. <groupId>org.apache.groovy</groupId>
  78. <artifactId>groovy</artifactId>
  79. <version>4.0.18</version>
  80. </dependency>
  81. <!--<dependency>
  82. <groupId>com.baomidou</groupId>
  83. <artifactId>mybatis-plus-boot-starter</artifactId>
  84. <version>3.5.3.2</version>
  85. </dependency>-->
  86. </dependencies>
  87. <!--<dependencyManagement>
  88. <dependencies>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-dependencies</artifactId>
  92. <version>${spring-boot.version}</version>
  93. <type>pom</type>
  94. <scope>import</scope>
  95. </dependency>
  96. </dependencies>
  97. </dependencyManagement>-->
  98. <!--<build>
  99. <plugins>
  100. <plugin>
  101. <groupId>org.apache.maven.plugins</groupId>
  102. <artifactId>maven-compiler-plugin</artifactId>
  103. <version>3.8.1</version>
  104. <configuration>
  105. <source>1.8</source>
  106. <target>1.8</target>
  107. <encoding>UTF-8</encoding>
  108. </configuration>
  109. </plugin>
  110. <plugin>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-maven-plugin</artifactId>
  113. <version>${spring-boot.version}</version>
  114. <configuration>
  115. <mainClass>com.ruoyi.ucp.UniversalComputingPlatformApplication</mainClass>
  116. <skip>true</skip>
  117. </configuration>
  118. <executions>
  119. <execution>
  120. <id>repackage</id>
  121. <goals>
  122. <goal>repackage</goal>
  123. </goals>
  124. </execution>
  125. </executions>
  126. </plugin>
  127. </plugins>
  128. </build>-->
  129. </project>