pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. <dependency>
  59. <groupId>com.ytpm</groupId>
  60. <artifactId>yt-novel-feign</artifactId>
  61. <version>1.0-SNAPSHOT</version>
  62. </dependency>
  63. </dependencies>
  64. <build>
  65. <finalName>yt-middle</finalName>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-compiler-plugin</artifactId>
  70. <version>3.8.1</version>
  71. <configuration>
  72. <source>8</source>
  73. <target>8</target>
  74. <encoding>utf-8</encoding>
  75. </configuration>
  76. </plugin>
  77. <plugin>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-maven-plugin</artifactId>
  80. <version>2.5.3</version>
  81. <executions>
  82. <execution>
  83. <phase>package</phase>
  84. <goals>
  85. <goal>repackage</goal>
  86. </goals>
  87. </execution>
  88. </executions>
  89. <configuration>
  90. <includeSystemScope>true</includeSystemScope>
  91. <mainClass>com.ytpm.middle.MiddleApplication</mainClass>
  92. </configuration>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. </project>