pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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.taosdata.jdbc</groupId>
  83. <artifactId>taos-jdbcdriver</artifactId>
  84. <version>2.0.39</version>
  85. </dependency>
  86. <!--Redis依赖-->
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-data-redis</artifactId>
  90. </dependency>
  91. <!--连接池依赖-->
  92. <dependency>
  93. <groupId>org.apache.commons</groupId>
  94. <artifactId>commons-pool2</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.baomidou</groupId>
  98. <artifactId>mybatis-plus-boot-starter</artifactId>
  99. <version>3.5.3.2</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.jfree</groupId>
  103. <artifactId>jfreechart</artifactId>
  104. <version>1.5.5</version>
  105. </dependency>
  106. </dependencies>
  107. <!--<dependencyManagement>
  108. <dependencies>
  109. <dependency>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-dependencies</artifactId>
  112. <version>${spring-boot.version}</version>
  113. <type>pom</type>
  114. <scope>import</scope>
  115. </dependency>
  116. </dependencies>
  117. </dependencyManagement>-->
  118. <!--<build>
  119. <plugins>
  120. <plugin>
  121. <groupId>org.apache.maven.plugins</groupId>
  122. <artifactId>maven-compiler-plugin</artifactId>
  123. <version>3.8.1</version>
  124. <configuration>
  125. <source>1.8</source>
  126. <target>1.8</target>
  127. <encoding>UTF-8</encoding>
  128. </configuration>
  129. </plugin>
  130. <plugin>
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-maven-plugin</artifactId>
  133. <version>${spring-boot.version}</version>
  134. <configuration>
  135. <mainClass>com.ruoyi.ucp.UniversalComputingPlatformApplication</mainClass>
  136. <skip>true</skip>
  137. </configuration>
  138. <executions>
  139. <execution>
  140. <id>repackage</id>
  141. <goals>
  142. <goal>repackage</goal>
  143. </goals>
  144. </execution>
  145. </executions>
  146. </plugin>
  147. </plugins>
  148. </build>-->
  149. </project>