pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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>com.github.microservice</groupId>
  7. <artifactId>MSRunnable</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <relativePath>../../../super/MSRunnable</relativePath>
  10. </parent>
  11. <groupId>com.github.microservice.card</groupId>
  12. <artifactId>FullCardServer</artifactId>
  13. <name>FullCardServer</name>
  14. <properties>
  15. <java.version>17</java.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.github.microservice</groupId>
  20. <artifactId>PCore</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <!--应用中心客户端-->
  24. <dependency>
  25. <groupId>com.github.microservice.components</groupId>
  26. <artifactId>ApplicationClient</artifactId>
  27. <version>${project.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.github.microservice.card</groupId>
  31. <artifactId>FullCardClient</artifactId>
  32. <version>${project.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.github.microservice.components</groupId>
  36. <artifactId>RedisData</artifactId>
  37. <version>${project.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.github.microservice.components</groupId>
  41. <artifactId>MongodbData</artifactId>
  42. <version>${project.version}</version>
  43. </dependency>
  44. <!-- <dependency>-->
  45. <!-- <groupId>com.github.microservice.auth</groupId>-->
  46. <!-- <artifactId>AuthClient</artifactId>-->
  47. <!-- <version>${project.version}</version>-->
  48. <!-- </dependency>-->
  49. <dependency>
  50. <groupId>org.projectlombok</groupId>
  51. <artifactId>lombok</artifactId>
  52. <version>${lombok.version}</version>
  53. </dependency>
  54. <!--二维码-->
  55. <dependency>
  56. <groupId>com.google.zxing</groupId>
  57. <artifactId>core</artifactId>
  58. <version>3.4.1</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.google.zxing</groupId>
  62. <artifactId>javase</artifactId>
  63. <version>3.4.1</version>
  64. </dependency>
  65. <!-- 拼音 -->
  66. <dependency>
  67. <groupId>com.belerweb</groupId>
  68. <artifactId>pinyin4j</artifactId>
  69. <version>2.5.1</version>
  70. </dependency>
  71. <!-- excel导出 -->
  72. <dependency>
  73. <groupId>org.apache.poi</groupId>
  74. <artifactId>poi</artifactId>
  75. <version>4.1.2</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.poi</groupId>
  79. <artifactId>poi-ooxml</artifactId>
  80. <version>4.1.2</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.poi</groupId>
  84. <artifactId>poi-ooxml-schemas</artifactId>
  85. <version>4.1.2</version>
  86. </dependency>
  87. </dependencies>
  88. </project>