pom.xml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. <module>consumer</module>
  24. </modules>
  25. <properties>
  26. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  27. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  28. <java.version>1.8</java.version>
  29. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  30. <commons.io.version>2.5</commons.io.version>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-test</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>redis.clients</groupId>
  44. <artifactId>jedis</artifactId>
  45. <version>2.9.0</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.baomidou</groupId>
  49. <artifactId>mybatis-plus-boot-starter</artifactId>
  50. <version>3.2.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.baomidou</groupId>
  54. <artifactId>mybatis-plus-generator</artifactId>
  55. <version>3.3.2</version>
  56. </dependency>
  57. </dependencies>
  58. <!-- 阿里云maven仓库 -->
  59. <repositories>
  60. <repository>
  61. <id>public</id>
  62. <name>aliyun nexus</name>
  63. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  64. <releases>
  65. <enabled>true</enabled>
  66. </releases>
  67. </repository>
  68. </repositories>
  69. <pluginRepositories>
  70. <pluginRepository>
  71. <id>public</id>
  72. <name>aliyun nexus</name>
  73. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  74. <releases>
  75. <enabled>true</enabled>
  76. </releases>
  77. <snapshots>
  78. <enabled>false</enabled>
  79. </snapshots>
  80. </pluginRepository>
  81. </pluginRepositories>
  82. </project>