pom.xml 2.9 KB

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