pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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-agent</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>agent-service</artifactId>
  10. <packaging>jar</packaging>
  11. <description>代理商后台</description>
  12. <name>agent-service</name>
  13. <url>http://maven.apache.org</url>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>mysql</groupId>
  20. <artifactId>mysql-connector-java</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.cloud</groupId>
  24. <artifactId>spring-cloud-starter-oauth2</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.google.guava</groupId>
  28. <artifactId>guava</artifactId>
  29. <version>31.0-jre</version>
  30. </dependency>
  31. <!--feign依赖-->
  32. <dependency>
  33. <groupId>com.ytpm</groupId>
  34. <artifactId>advertise-feign</artifactId>
  35. <version>1.0-SNAPSHOT</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.ytpm</groupId>
  39. <artifactId>risk-feign</artifactId>
  40. <version>1.0-SNAPSHOT</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.ytpm</groupId>
  44. <artifactId>agent-feign</artifactId>
  45. <version>1.0-SNAPSHOT</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.ytpm</groupId>
  49. <artifactId>yt-question-feign</artifactId>
  50. <version>1.0-SNAPSHOT</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.ytpm</groupId>
  54. <artifactId>lemon-ios-feign</artifactId>
  55. <version>1.0-SNAPSHOT</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.ytpm</groupId>
  59. <artifactId>yt-novel-feign</artifactId>
  60. <version>1.0-SNAPSHOT</version>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <finalName>agent-service</finalName>
  65. <plugins>
  66. <plugin>
  67. <groupId>org.apache.maven.plugins</groupId>
  68. <artifactId>maven-compiler-plugin</artifactId>
  69. <version>3.8.1</version>
  70. <configuration>
  71. <source>8</source>
  72. <target>8</target>
  73. <encoding>utf-8</encoding>
  74. </configuration>
  75. </plugin>
  76. <plugin>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-maven-plugin</artifactId>
  79. <version>2.5.3</version>
  80. <executions>
  81. <execution>
  82. <phase>package</phase>
  83. <goals>
  84. <goal>repackage</goal>
  85. </goals>
  86. </execution>
  87. </executions>
  88. <configuration>
  89. <includeSystemScope>true</includeSystemScope>
  90. <mainClass>com.ytpm.AgentApplication</mainClass>
  91. </configuration>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. </project>