pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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-irun</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <name>irun-service</name>
  10. <artifactId>irun-service</artifactId>
  11. <packaging>jar</packaging>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>mysql</groupId>
  18. <artifactId>mysql-connector-java</artifactId>
  19. </dependency>
  20. <!-- <dependency>-->
  21. <!-- <groupId>org.springframework.boot</groupId>-->
  22. <!-- <artifactId>spring-boot-starter-data-jpa</artifactId>-->
  23. <!-- </dependency>-->
  24. <!-- &lt;!&ndash; HikariCP 连接池 (Spring Boot 默认已包含) &ndash;&gt;-->
  25. <!-- &lt;!&ndash; 动态数据源路由 &ndash;&gt;-->
  26. <!-- <dependency>-->
  27. <!-- <groupId>com.baomidou</groupId>-->
  28. <!-- <artifactId>dynamic-datasource-spring-boot-starter</artifactId>-->
  29. <!-- <version>3.6.1</version>-->
  30. <!-- </dependency>-->
  31. <dependency>
  32. <groupId>com.google.guava</groupId>
  33. <artifactId>guava</artifactId>
  34. <version>31.0-jre</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.ytpm</groupId>
  38. <artifactId>risk-feign</artifactId>
  39. <version>1.0-SNAPSHOT</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-web</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.mybatis.spring.boot</groupId>
  47. <artifactId>mybatis-spring-boot-starter</artifactId>
  48. <version>2.2.0</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.zaxxer</groupId>
  52. <artifactId>HikariCP</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-aop</artifactId>
  57. </dependency>
  58. </dependencies>
  59. <build>
  60. <finalName>irun-service</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.irun.IRunApplication</mainClass>
  87. </configuration>
  88. </plugin>
  89. </plugins>
  90. </build>
  91. </project>