pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.6.4</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.jkcredit</groupId>
  12. <artifactId>identity-verify</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>identity-verify</name>
  15. <description>identity-verify</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-data-redis</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.projectlombok</groupId>
  30. <artifactId>lombok</artifactId>
  31. <optional>true</optional>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-test</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-configuration-processor</artifactId>
  41. <version>2.3.7.RELEASE</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.httpcomponents</groupId>
  45. <artifactId>httpclient</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-validation</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>cn.hutool</groupId>
  53. <artifactId>hutool-all</artifactId>
  54. <version>5.7.16</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>net.java.dev.jna</groupId>
  58. <artifactId>jna</artifactId>
  59. <version>4.5.2</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.zdab</groupId>
  63. <artifactId>ukey</artifactId>
  64. <version>1.0.1</version>
  65. <scope>system</scope>
  66. <systemPath>${project.basedir}/lib/ukey-1.0.1.jar</systemPath>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.zdab</groupId>
  70. <artifactId>gmjce</artifactId>
  71. <version>1.0</version>
  72. <scope>system</scope>
  73. <systemPath>${project.basedir}/lib/gmjce-1.0.jar</systemPath>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.zdab</groupId>
  77. <artifactId>gmjsse</artifactId>
  78. <version>1.0</version>
  79. <scope>system</scope>
  80. <systemPath>${project.basedir}/lib/gmjsse-1.0.jar</systemPath>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.alibaba</groupId>
  84. <artifactId>fastjson</artifactId>
  85. <version>1.2.76</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.quartz-scheduler</groupId>
  89. <artifactId>quartz</artifactId>
  90. <version>2.3.0</version>
  91. </dependency>
  92. </dependencies>
  93. <build>
  94. <plugins>
  95. <plugin>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-maven-plugin</artifactId>
  98. <version>2.6.4</version>
  99. <configuration>
  100. <includeSystemScope>true</includeSystemScope>
  101. </configuration>
  102. <executions>
  103. <execution>
  104. <id>copy-dependencies</id>
  105. <goals>
  106. <goal>repackage</goal>
  107. </goals>
  108. </execution>
  109. </executions>
  110. </plugin>
  111. </plugins>
  112. </build>
  113. </project>