pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.ytpm</groupId>
  8. <artifactId>yt-countstep</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <name>countstep-service</name>
  12. <artifactId>countstep-service</artifactId>
  13. <packaging>jar</packaging>
  14. <description>计步趣健身</description>
  15. <properties>
  16. <maven.compiler.source>8</maven.compiler.source>
  17. <maven.compiler.target>8</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>mysql</groupId>
  23. <artifactId>mysql-connector-java</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. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-web</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.mybatis.spring.boot</groupId>
  41. <artifactId>mybatis-spring-boot-starter</artifactId>
  42. <version>2.2.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.zaxxer</groupId>
  46. <artifactId>HikariCP</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-aop</artifactId>
  51. </dependency>
  52. </dependencies>
  53. <build>
  54. <finalName>countstep-service</finalName>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.apache.maven.plugins</groupId>
  58. <artifactId>maven-compiler-plugin</artifactId>
  59. <version>3.8.1</version>
  60. <configuration>
  61. <source>8</source>
  62. <target>8</target>
  63. <encoding>utf-8</encoding>
  64. </configuration>
  65. </plugin>
  66. <plugin>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-maven-plugin</artifactId>
  69. <version>2.5.3</version>
  70. <executions>
  71. <execution>
  72. <phase>package</phase>
  73. <goals>
  74. <goal>repackage</goal>
  75. </goals>
  76. </execution>
  77. </executions>
  78. <configuration>
  79. <includeSystemScope>true</includeSystemScope>
  80. <mainClass>com.ytpm.countstep.CountStepApplication</mainClass>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. </project>