pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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-novel</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>yt-novel-service</artifactId>
  12. <packaging>jar</packaging>
  13. <description>子服务-小说模式</description>
  14. <name>novel-service</name>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <hikar-icp.version>4.0.3</hikar-icp.version>
  18. <zxing.version>3.5.1</zxing.version>
  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>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-cache</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.zaxxer</groupId>
  50. <artifactId>HikariCP</artifactId>
  51. <version>${hikar-icp.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-aop</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.google.zxing</groupId>
  59. <artifactId>core</artifactId>
  60. <version>${zxing.version}</version>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <finalName>${project.name}</finalName>
  65. <plugins>
  66. <plugin>
  67. <groupId>org.apache.maven.plugins</groupId>
  68. <artifactId>maven-compiler-plugin</artifactId>
  69. <version>3.8.1</version>
  70. <configuration>
  71. <source>8</source>
  72. <target>8</target>
  73. <encoding>utf-8</encoding>
  74. </configuration>
  75. </plugin>
  76. <plugin>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-maven-plugin</artifactId>
  79. <version>2.5.3</version>
  80. <executions>
  81. <execution>
  82. <phase>package</phase>
  83. <goals>
  84. <goal>repackage</goal>
  85. </goals>
  86. </execution>
  87. </executions>
  88. <configuration>
  89. <includeSystemScope>true</includeSystemScope>
  90. <mainClass>com.ytpm.novel.NovelApplication</mainClass>
  91. </configuration>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. </project>