| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.giantan.mds</groupId>
- <artifactId>mds</artifactId>
- <version>1.0.0</version>
- </parent>
- <groupId>org.cnnlp.data.md</groupId>
- <artifactId>gtbook</artifactId>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <spring-ai.version>1.0.0</spring-ai.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>2.0.17</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>2.0.17</version>
- </dependency>
- <!-- https://search.maven.org/artifact/com.github.f4b6a3/ulid-creator -->
- <dependency>
- <groupId>com.github.f4b6a3</groupId>
- <artifactId>ulid-creator</artifactId>
- <version>5.2.3</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.15.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-core</artifactId>
- <version>2.18.3</version>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>2.18.3</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.github.cliftonlabs/json-simple -->
- <dependency>
- <groupId>com.github.cliftonlabs</groupId>
- <artifactId>json-simple</artifactId>
- <version>4.0.1</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/net.sf.trove4j/trove4j -->
- <dependency>
- <groupId>net.sf.trove4j</groupId>
- <artifactId>trove4j</artifactId>
- <version>2.1.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.opennlp/opennlp-tools -->
- <dependency>
- <groupId>org.apache.opennlp</groupId>
- <artifactId>opennlp-tools</artifactId>
- <version>2.4.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
- <dependency>
- <groupId>org.jsoup</groupId>
- <artifactId>jsoup</artifactId>
- <version>1.17.1</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.vladsch.flexmark/flexmark-all -->
- <dependency>
- <groupId>com.vladsch.flexmark</groupId>
- <artifactId>flexmark-all</artifactId>
- <version>0.64.8</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.38</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-commons</artifactId>
- <!-- <version>${SPRING_AI_VERSION}</version>-->
- <!-- <scope>system</scope>-->
- <!-- <systemPath>${project.basedir}/lib/spring-ai-core-1.0.0-M6.jar</systemPath>-->
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.junit.jupiter</groupId>-->
- <!-- <artifactId>junit-jupiter</artifactId>-->
- <!-- <scope>test</scope>-->
- <!-- </dependency>-->
- </dependencies>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.springframework.ai</groupId>
- <artifactId>spring-ai-bom</artifactId>
- <version>${spring-ai.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|