pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.7.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.gyee</groupId>
  12. <artifactId>sis-background</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>sis-background</name>
  15. <description>Demo project for Spring Boot</description>
  16. <packaging>pom</packaging>
  17. <modules>
  18. <module>datacenter</module>
  19. <module>cache</module>
  20. <module>gradeevaluation</module>
  21. <module>benchmarking-hive</module>
  22. <module>benchmarking-impala</module>
  23. </modules>
  24. <properties>
  25. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  26. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  27. <java.version>1.8</java.version>
  28. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  29. <commons.io.version>2.5</commons.io.version>
  30. </properties>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-test</artifactId>
  39. <scope>test</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>redis.clients</groupId>
  43. <artifactId>jedis</artifactId>
  44. <version>2.9.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.baomidou</groupId>
  48. <artifactId>mybatis-plus-boot-starter</artifactId>
  49. <version>3.2.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.baomidou</groupId>
  53. <artifactId>mybatis-plus-generator</artifactId>
  54. <version>3.3.2</version>
  55. </dependency>
  56. </dependencies>
  57. <!-- 阿里云maven仓库 -->
  58. <repositories>
  59. <repository>
  60. <id>public</id>
  61. <name>aliyun nexus</name>
  62. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  63. <releases>
  64. <enabled>true</enabled>
  65. </releases>
  66. </repository>
  67. </repositories>
  68. <pluginRepositories>
  69. <pluginRepository>
  70. <id>public</id>
  71. <name>aliyun nexus</name>
  72. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  73. <releases>
  74. <enabled>true</enabled>
  75. </releases>
  76. <snapshots>
  77. <enabled>false</enabled>
  78. </snapshots>
  79. </pluginRepository>
  80. </pluginRepositories>
  81. </project>