<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<groupId>com.smtaiserver.smtaiserver</groupId>
|
<artifactId>SMTAIServer</artifactId>
|
|
<parent>
|
<groupId>com.smtaiserver.smtaiserverboot</groupId>
|
<artifactId>SMTAIServerBoot</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
<relativePath>../SMTAIServerBoot/pom.xml</relativePath>
|
</parent>
|
|
<dependencies>
|
<dependency>
|
<groupId>com.smtservlet</groupId>
|
<artifactId>SMTServlet</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>com.github.jsqlparser</groupId>
|
<artifactId>jsqlparser</artifactId>
|
<version>4.2</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-pool2</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>dashscope-sdk-java</artifactId>
|
<version>2.15.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.smtaiserver.smtaiserver</groupId>
|
<artifactId>SMTAIServerVer</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-text</artifactId>
|
<version>1.9</version>
|
</dependency>
|
<dependency>
|
<groupId>com.fasterxml.uuid</groupId>
|
<artifactId>java-uuid-generator</artifactId>
|
<version>5.1.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.locationtech.proj4j</groupId>
|
<artifactId>proj4j</artifactId>
|
<version>1.3.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.duckdb</groupId>
|
<artifactId>duckdb_jdbc</artifactId>
|
<version>0.10.0</version>
|
</dependency>
|
</dependencies>
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<version>2.5.3</version><!--$NO-MVN-MAN-VER$-->
|
<configuration>
|
<classifier>exec</classifier>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
<pluginRepositories>
|
<pluginRepository>
|
<id>spring-milestones</id>
|
<name>Spring Milestones</name>
|
<url>https://repo.spring.io/milestone</url>
|
<snapshots>
|
<enabled>false</enabled>
|
</snapshots>
|
</pluginRepository>
|
<pluginRepository>
|
<id>spring-snapshots</id>
|
<name>Spring Snapshots</name>
|
<url>https://repo.spring.io/snapshot</url>
|
<releases>
|
<enabled>false</enabled>
|
</releases>
|
</pluginRepository>
|
</pluginRepositories>
|
|
</project>
|