2025-02-21 11:26:58 +08:00
|
|
|
|
<?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>
|
|
|
|
|
|
|
2025-06-09 12:12:10 +08:00
|
|
|
|
<name>SmartJavaAI</name>
|
2025-04-28 16:13:34 +08:00
|
|
|
|
<groupId>cn.smartjavaai</groupId>
|
2025-02-21 11:26:58 +08:00
|
|
|
|
<artifactId>smartjavaai-parent</artifactId>
|
2025-07-28 12:04:02 +08:00
|
|
|
|
<version>1.0.22</version>
|
2025-02-21 11:26:58 +08:00
|
|
|
|
<packaging>pom</packaging>
|
2025-02-23 12:56:50 +08:00
|
|
|
|
<description>SmartJavaAI</description>
|
2025-02-21 11:26:58 +08:00
|
|
|
|
<modules>
|
|
|
|
|
|
<module>smartjavaai-face</module>
|
2025-06-06 10:26:12 +08:00
|
|
|
|
<module>smartjavaai-translate</module>
|
2025-02-21 11:26:58 +08:00
|
|
|
|
<module>smartjavaai-common</module>
|
2025-04-13 20:33:15 +08:00
|
|
|
|
<module>smartjavaai-objectdetection</module>
|
|
|
|
|
|
<module>smartjavaai-all</module>
|
2025-04-28 16:13:34 +08:00
|
|
|
|
<module>smartjavaai-ocr</module>
|
2025-05-09 20:10:04 +08:00
|
|
|
|
<module>smartjavaai-bom</module>
|
2025-08-06 09:20:19 +08:00
|
|
|
|
<module>smartjavaai-speech</module>
|
2025-02-21 11:26:58 +08:00
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
2025-05-17 11:19:46 +08:00
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
2025-02-21 11:26:58 +08:00
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2025-02-23 12:56:50 +08:00
|
|
|
|
<djl.version>0.32.0</djl.version>
|
2025-02-21 11:26:58 +08:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ai.djl</groupId>
|
|
|
|
|
|
<artifactId>bom</artifactId>
|
|
|
|
|
|
<version>${djl.version}</version>
|
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
2025-02-23 12:56:50 +08:00
|
|
|
|
|
2025-02-21 11:26:58 +08:00
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
<dependencies>
|
2025-03-26 17:09:22 +08:00
|
|
|
|
|
2025-02-21 11:26:58 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ai.djl</groupId>
|
|
|
|
|
|
<artifactId>api</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ai.djl</groupId>
|
|
|
|
|
|
<artifactId>basicdataset</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ai.djl</groupId>
|
|
|
|
|
|
<artifactId>model-zoo</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-06-06 10:26:12 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ai.djl.huggingface</groupId>
|
|
|
|
|
|
<artifactId>tokenizers</artifactId>
|
|
|
|
|
|
<version>${djl.version}</version>
|
|
|
|
|
|
</dependency>
|
2025-05-09 20:10:04 +08:00
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
|
<!-- <groupId>ai.djl.timeseries</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>timeseries</artifactId>-->
|
|
|
|
|
|
<!-- </dependency>-->
|
2025-06-06 10:26:12 +08:00
|
|
|
|
|
2025-05-09 20:10:04 +08:00
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
|
<!-- <groupId>ai.djl.audio</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>audio</artifactId>-->
|
|
|
|
|
|
<!-- </dependency>-->
|
2025-02-21 11:26:58 +08:00
|
|
|
|
<!-- MXNet -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ai.djl.mxnet</groupId>
|
|
|
|
|
|
<artifactId>mxnet-model-zoo</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- Pytorch -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ai.djl.pytorch</groupId>
|
|
|
|
|
|
<artifactId>pytorch-model-zoo</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- TensorFlow -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ai.djl.tensorflow</groupId>
|
|
|
|
|
|
<artifactId>tensorflow-model-zoo</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-05-09 20:10:04 +08:00
|
|
|
|
|
2025-02-21 11:26:58 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.testng</groupId>
|
|
|
|
|
|
<artifactId>testng</artifactId>
|
2025-05-17 11:19:46 +08:00
|
|
|
|
<version>7.4.0</version>
|
2025-02-21 11:26:58 +08:00
|
|
|
|
<scope>test</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
|
|
<version>1.9.4</version>
|
|
|
|
|
|
</dependency>
|
2025-02-26 11:23:39 +08:00
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
|
<version>3.9</version>
|
|
|
|
|
|
</dependency>
|
2025-03-20 21:12:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
2025-03-26 17:09:22 +08:00
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
|
<version>1.18.4</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
|
<version>1.7.30</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
|
|
<version>1.7.30</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-cli</groupId>
|
|
|
|
|
|
<artifactId>commons-cli</artifactId>
|
|
|
|
|
|
<version>1.9.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
|
<version>2.17.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-04-13 20:33:15 +08:00
|
|
|
|
<!-- Apache Commons Pool2 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-pool2</artifactId>
|
|
|
|
|
|
<version>2.12.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ai.djl.pytorch</groupId>
|
|
|
|
|
|
<artifactId>pytorch-engine</artifactId>
|
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ai.djl.tensorflow</groupId>
|
|
|
|
|
|
<artifactId>tensorflow-engine</artifactId>
|
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ai.djl.mxnet</groupId>
|
|
|
|
|
|
<artifactId>mxnet-engine</artifactId>
|
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ai.djl.onnxruntime</groupId>
|
|
|
|
|
|
<artifactId>onnxruntime-engine</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-04-28 16:13:34 +08:00
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ai.djl.opencv</groupId>
|
|
|
|
|
|
<artifactId>opencv</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-04-13 20:33:15 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ai.djl.ml.xgboost</groupId>
|
|
|
|
|
|
<artifactId>xgboost</artifactId>
|
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ai.djl.tensorrt</groupId>
|
|
|
|
|
|
<artifactId>tensorrt</artifactId>
|
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-04-19 19:48:12 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
|
<artifactId>hutool-system</artifactId>
|
|
|
|
|
|
<version>5.8.16</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
|
<artifactId>hutool-setting</artifactId>
|
|
|
|
|
|
<version>5.8.16</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-04-28 16:13:34 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>gov.nist.math</groupId>
|
|
|
|
|
|
<artifactId>jama</artifactId>
|
|
|
|
|
|
<version>1.0.3</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-05-09 20:10:04 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.bytedeco</groupId>
|
|
|
|
|
|
<artifactId>javacv</artifactId>
|
|
|
|
|
|
<version>1.5.10</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-04-13 20:33:15 +08:00
|
|
|
|
|
|
|
|
|
|
|
2025-02-21 11:26:58 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
2025-04-13 20:33:15 +08:00
|
|
|
|
|
|
|
|
|
|
|
2025-02-23 12:56:50 +08:00
|
|
|
|
<url>https://github.com/geekwenjie/SmartJavaAI</url>
|
|
|
|
|
|
<licenses>
|
|
|
|
|
|
<license>
|
2025-02-26 11:23:39 +08:00
|
|
|
|
<name>MIT License</name>
|
|
|
|
|
|
<url>https://opensource.org/licenses/MIT</url>
|
2025-02-23 12:56:50 +08:00
|
|
|
|
</license>
|
|
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.sonatype.central</groupId>
|
|
|
|
|
|
<artifactId>central-publishing-maven-plugin</artifactId>
|
|
|
|
|
|
<version>0.4.0</version>
|
|
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<publishingServerId>dengwenjie</publishingServerId>
|
|
|
|
|
|
<tokenAuth>true</tokenAuth>
|
|
|
|
|
|
<deploymentName>${project.groupId}:${project.artifactId}:${project.version}</deploymentName>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
|
<version>3.1.0</version>
|
|
|
|
|
|
<executions>
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
<id>attach-sources</id>
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
|
|
</goals>
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
|
<version>3.1.0</version>
|
|
|
|
|
|
<configuration>
|
2025-05-17 11:19:46 +08:00
|
|
|
|
<!-- <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>-->
|
2025-02-23 12:56:50 +08:00
|
|
|
|
<doclint>none</doclint>
|
|
|
|
|
|
<additionalJOptions>
|
|
|
|
|
|
<additionalJOption>-Xdoclint:none</additionalJOption>
|
|
|
|
|
|
</additionalJOptions>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
<executions>
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
|
</goals>
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
|
|
<version>3.1.0</version>
|
|
|
|
|
|
<executions>
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
|
|
<phase>verify</phase>
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
<goal>sign</goal>
|
|
|
|
|
|
</goals>
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 必须添加:SCM信息 -->
|
|
|
|
|
|
<scm>
|
|
|
|
|
|
<connection>scm:git:git://github.com/geekwenjie/SmartJavaAI.git</connection>
|
|
|
|
|
|
<developerConnection>scm:git:ssh://github.com/geekwenjie/SmartJavaAI.git</developerConnection>
|
|
|
|
|
|
<url>http://github.com/geekwenjie/SmartJavaAI/tree/master</url>
|
|
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
|
<id>dengwenjie</id>
|
|
|
|
|
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
|
|
</snapshotRepository>
|
|
|
|
|
|
<repository>
|
|
|
|
|
|
<id>dengwenjie</id>
|
|
|
|
|
|
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
|
|
</repository>
|
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
|
|
<developer>
|
|
|
|
|
|
<name>dengwenjie</name>
|
|
|
|
|
|
<email>775747758@qq.com</email>
|
|
|
|
|
|
<roles>
|
|
|
|
|
|
<role>Project Manager</role>
|
|
|
|
|
|
<role>Architect</role>
|
|
|
|
|
|
</roles>
|
|
|
|
|
|
</developer>
|
|
|
|
|
|
</developers>
|
|
|
|
|
|
|
2025-02-21 11:26:58 +08:00
|
|
|
|
</project>
|