pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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-app</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>app-service</artifactId>
  10. <packaging>jar</packaging>
  11. <name>app-service</name>
  12. <description>答题APP</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. </dependencies>
  33. <build>
  34. <finalName>app-service</finalName>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-compiler-plugin</artifactId>
  39. <version>3.8.1</version>
  40. <configuration>
  41. <source>8</source>
  42. <target>8</target>
  43. <encoding>utf-8</encoding>
  44. </configuration>
  45. </plugin>
  46. <plugin>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-maven-plugin</artifactId>
  49. <version>2.5.3</version>
  50. <executions>
  51. <execution>
  52. <phase>package</phase>
  53. <goals>
  54. <goal>repackage</goal>
  55. </goals>
  56. </execution>
  57. </executions>
  58. <configuration>
  59. <includeSystemScope>true</includeSystemScope>
  60. <mainClass>com.ytpm.AppApplication</mainClass>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>