pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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.giantan.mds</groupId>
  8. <artifactId>mds</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <groupId>org.cnnlp.data.md</groupId>
  12. <artifactId>gtbook</artifactId>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <spring-ai.version>1.0.0</spring-ai.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.slf4j</groupId>
  22. <artifactId>slf4j-api</artifactId>
  23. <version>2.0.17</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.slf4j</groupId>
  27. <artifactId>slf4j-simple</artifactId>
  28. <version>2.0.17</version>
  29. </dependency>
  30. <!-- https://search.maven.org/artifact/com.github.f4b6a3/ulid-creator -->
  31. <dependency>
  32. <groupId>com.github.f4b6a3</groupId>
  33. <artifactId>ulid-creator</artifactId>
  34. <version>5.2.3</version>
  35. </dependency>
  36. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  37. <dependency>
  38. <groupId>commons-io</groupId>
  39. <artifactId>commons-io</artifactId>
  40. <version>2.15.0</version>
  41. </dependency>
  42. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
  43. <dependency>
  44. <groupId>com.fasterxml.jackson.core</groupId>
  45. <artifactId>jackson-core</artifactId>
  46. <version>2.18.3</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.fasterxml.jackson.core</groupId>
  50. <artifactId>jackson-databind</artifactId>
  51. <version>2.18.3</version>
  52. </dependency>
  53. <!-- https://mvnrepository.com/artifact/com.github.cliftonlabs/json-simple -->
  54. <dependency>
  55. <groupId>com.github.cliftonlabs</groupId>
  56. <artifactId>json-simple</artifactId>
  57. <version>4.0.1</version>
  58. </dependency>
  59. <!-- https://mvnrepository.com/artifact/net.sf.trove4j/trove4j -->
  60. <dependency>
  61. <groupId>net.sf.trove4j</groupId>
  62. <artifactId>trove4j</artifactId>
  63. <version>2.1.0</version>
  64. </dependency>
  65. <!-- https://mvnrepository.com/artifact/org.apache.opennlp/opennlp-tools -->
  66. <dependency>
  67. <groupId>org.apache.opennlp</groupId>
  68. <artifactId>opennlp-tools</artifactId>
  69. <version>2.4.0</version>
  70. </dependency>
  71. <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
  72. <dependency>
  73. <groupId>org.jsoup</groupId>
  74. <artifactId>jsoup</artifactId>
  75. <version>1.17.1</version>
  76. </dependency>
  77. <!-- https://mvnrepository.com/artifact/com.vladsch.flexmark/flexmark-all -->
  78. <dependency>
  79. <groupId>com.vladsch.flexmark</groupId>
  80. <artifactId>flexmark-all</artifactId>
  81. <version>0.64.8</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.projectlombok</groupId>
  85. <artifactId>lombok</artifactId>
  86. <version>1.18.38</version>
  87. <scope>compile</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.ai</groupId>
  91. <artifactId>spring-ai-commons</artifactId>
  92. <!-- <version>${SPRING_AI_VERSION}</version>-->
  93. <!-- <scope>system</scope>-->
  94. <!-- <systemPath>${project.basedir}/lib/spring-ai-core-1.0.0-M6.jar</systemPath>-->
  95. </dependency>
  96. <!-- <dependency>-->
  97. <!-- <groupId>org.junit.jupiter</groupId>-->
  98. <!-- <artifactId>junit-jupiter</artifactId>-->
  99. <!-- <scope>test</scope>-->
  100. <!-- </dependency>-->
  101. </dependencies>
  102. <dependencyManagement>
  103. <dependencies>
  104. <dependency>
  105. <groupId>org.springframework.ai</groupId>
  106. <artifactId>spring-ai-bom</artifactId>
  107. <version>${spring-ai.version}</version>
  108. <type>pom</type>
  109. <scope>import</scope>
  110. </dependency>
  111. </dependencies>
  112. </dependencyManagement>
  113. </project>