pom.xml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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-raisepig</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <name>raisepig-service</name>
  10. <artifactId>raisepig-service</artifactId>
  11. <packaging>jar</packaging>
  12. <description>全民养猪</description>
  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>com.google.guava</groupId>
  24. <artifactId>guava</artifactId>
  25. <version>31.0-jre</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.ytpm</groupId>
  29. <artifactId>risk-feign</artifactId>
  30. <version>1.0-SNAPSHOT</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.mybatis.spring.boot</groupId>
  38. <artifactId>mybatis-spring-boot-starter</artifactId>
  39. <version>2.2.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.zaxxer</groupId>
  43. <artifactId>HikariCP</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-aop</artifactId>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <finalName>raisepig-service</finalName>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-compiler-plugin</artifactId>
  56. <version>3.8.1</version>
  57. <configuration>
  58. <source>8</source>
  59. <target>8</target>
  60. <encoding>utf-8</encoding>
  61. </configuration>
  62. </plugin>
  63. <plugin>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-maven-plugin</artifactId>
  66. <version>2.5.3</version>
  67. <executions>
  68. <execution>
  69. <phase>package</phase>
  70. <goals>
  71. <goal>repackage</goal>
  72. </goals>
  73. </execution>
  74. </executions>
  75. <configuration>
  76. <includeSystemScope>true</includeSystemScope>
  77. <mainClass>com.ytpm.raisepig.RaisePigApplication</mainClass>
  78. </configuration>
  79. </plugin>
  80. </plugins>
  81. </build>
  82. </project>