pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.ytpm</groupId>
  6. <artifactId>yt-middle</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>middle-platform</artifactId>
  10. <packaging>jar</packaging>
  11. <name>middle-platform</name>
  12. <url>http://maven.apache.org</url>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.cloud</groupId>
  19. <artifactId>spring-cloud-starter-oauth2</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.google.guava</groupId>
  23. <artifactId>guava</artifactId>
  24. <version>32.0.1-android</version>
  25. </dependency>
  26. <!-- 阿里云对象存储 -->
  27. <dependency>
  28. <groupId>com.aliyun.oss</groupId>
  29. <artifactId>aliyun-sdk-oss</artifactId>
  30. <version>3.17.4</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.aliyun</groupId>
  34. <artifactId>sls20201230</artifactId>
  35. <version>5.9.0</version>
  36. </dependency>
  37. <!--feign依赖-->
  38. <dependency>
  39. <groupId>com.ytpm</groupId>
  40. <artifactId>irun-feign</artifactId>
  41. <version>1.0-SNAPSHOT</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.ytpm</groupId>
  45. <artifactId>agent-feign</artifactId>
  46. <version>1.0-SNAPSHOT</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.ytpm</groupId>
  50. <artifactId>yt-question-feign</artifactId>
  51. <version>1.0-SNAPSHOT</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.ytpm</groupId>
  55. <artifactId>lemon-ios-feign</artifactId>
  56. <version>1.0-SNAPSHOT</version>
  57. </dependency>
  58. </dependencies>
  59. <build>
  60. <finalName>yt-middle</finalName>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-compiler-plugin</artifactId>
  65. <version>3.8.1</version>
  66. <configuration>
  67. <source>8</source>
  68. <target>8</target>
  69. <encoding>utf-8</encoding>
  70. </configuration>
  71. </plugin>
  72. <plugin>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-maven-plugin</artifactId>
  75. <version>2.5.3</version>
  76. <executions>
  77. <execution>
  78. <phase>package</phase>
  79. <goals>
  80. <goal>repackage</goal>
  81. </goals>
  82. </execution>
  83. </executions>
  84. <configuration>
  85. <includeSystemScope>true</includeSystemScope>
  86. <mainClass>com.ytpm.middle.MiddleApplication</mainClass>
  87. </configuration>
  88. </plugin>
  89. </plugins>
  90. </build>
  91. </project>