pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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-ios-lemon</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>lemon-ios-service</artifactId>
  10. <packaging>jar</packaging>
  11. <name>lemon-ios-service</name>
  12. <description>IOS青柠檬记账</description>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-test</artifactId>
  20. </dependency>
  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. <version>${hikar-icp.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-aop</artifactId>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <finalName>lemonios-service</finalName>
  56. <plugins>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-compiler-plugin</artifactId>
  60. <version>3.8.1</version>
  61. <configuration>
  62. <source>8</source>
  63. <target>8</target>
  64. <encoding>utf-8</encoding>
  65. </configuration>
  66. </plugin>
  67. <plugin>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-maven-plugin</artifactId>
  70. <version>2.5.3</version>
  71. <executions>
  72. <execution>
  73. <phase>package</phase>
  74. <goals>
  75. <goal>repackage</goal>
  76. </goals>
  77. </execution>
  78. </executions>
  79. <configuration>
  80. <includeSystemScope>true</includeSystemScope>
  81. <mainClass>com.ytpm.lemonios.LemoniosApplication</mainClass>
  82. </configuration>
  83. </plugin>
  84. </plugins>
  85. </build>
  86. </project>