pom.xml 3.4 KB

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