pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.fenzhitech</groupId>
  7. <artifactId>sayu-service</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <name>洒渔镇苹果产业供需对接平台 - 后端服务</name>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>1.5.9.RELEASE</version>
  15. <relativePath/>
  16. </parent>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. </properties>
  21. <dependencies>
  22. <!-- Spring Boot Web -->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <!-- Spring Boot AOP -->
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-aop</artifactId>
  31. </dependency>
  32. <!-- Spring Boot Redis -->
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-data-redis</artifactId>
  36. </dependency>
  37. <!-- MyBatis -->
  38. <dependency>
  39. <groupId>org.mybatis.spring.boot</groupId>
  40. <artifactId>mybatis-spring-boot-starter</artifactId>
  41. <version>1.3.2</version>
  42. </dependency>
  43. <!-- MySQL -->
  44. <dependency>
  45. <groupId>mysql</groupId>
  46. <artifactId>mysql-connector-java</artifactId>
  47. <version>5.1.47</version>
  48. </dependency>
  49. <!-- JWT -->
  50. <dependency>
  51. <groupId>io.jsonwebtoken</groupId>
  52. <artifactId>jjwt</artifactId>
  53. <version>0.9.1</version>
  54. </dependency>
  55. <!-- Apache POI (Excel) -->
  56. <dependency>
  57. <groupId>org.apache.poi</groupId>
  58. <artifactId>poi-ooxml</artifactId>
  59. <version>3.17</version>
  60. </dependency>
  61. <!-- 阿里云 OSS -->
  62. <dependency>
  63. <groupId>com.aliyun.oss</groupId>
  64. <artifactId>aliyun-sdk-oss</artifactId>
  65. <version>3.15.1</version>
  66. </dependency>
  67. <!-- 阿里云核心 SDK -->
  68. <dependency>
  69. <groupId>com.aliyun</groupId>
  70. <artifactId>aliyun-java-sdk-core</artifactId>
  71. <version>4.5.3</version>
  72. </dependency>
  73. <!-- 阿里云短信 -->
  74. <dependency>
  75. <groupId>com.aliyun</groupId>
  76. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  77. <version>2.1.0</version>
  78. </dependency>
  79. <!-- Jackson (JSON) -->
  80. <dependency>
  81. <groupId>com.fasterxml.jackson.core</groupId>
  82. <artifactId>jackson-databind</artifactId>
  83. </dependency>
  84. <!-- 测试 -->
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-test</artifactId>
  88. <scope>test</scope>
  89. </dependency>
  90. </dependencies>
  91. <build>
  92. <plugins>
  93. <plugin>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-maven-plugin</artifactId>
  96. </plugin>
  97. <plugin>
  98. <groupId>org.apache.maven.plugins</groupId>
  99. <artifactId>maven-compiler-plugin</artifactId>
  100. <configuration>
  101. <source>${java.version}</source>
  102. <target>${java.version}</target>
  103. <encoding>UTF-8</encoding>
  104. </configuration>
  105. </plugin>
  106. </plugins>
  107. </build>
  108. </project>