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>
|
|
|
|
|
|
<parent>
|
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-12-31 11:28:06 +08:00
|
|
|
|
<version>1.1.1</version>
|
2025-02-21 11:26:58 +08:00
|
|
|
|
</parent>
|
|
|
|
|
|
|
2025-08-29 10:30:35 +08:00
|
|
|
|
<artifactId>face</artifactId>
|
2025-12-31 11:28:06 +08:00
|
|
|
|
<version>1.1.1</version>
|
2025-08-29 10:30:35 +08:00
|
|
|
|
<name>face</name>
|
2025-02-21 20:20:07 +08:00
|
|
|
|
<description>SmartJavaAI</description>
|
|
|
|
|
|
<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-21 20:20:07 +08:00
|
|
|
|
</license>
|
|
|
|
|
|
</licenses>
|
2025-02-21 11:26:58 +08:00
|
|
|
|
|
|
|
|
|
|
<properties>
|
2025-05-17 11:19:46 +08:00
|
|
|
|
<!-- <maven.compiler.source>11</maven.compiler.source>-->
|
|
|
|
|
|
<!-- <maven.compiler.target>11</maven.compiler.target>-->
|
2025-02-21 11:26:58 +08:00
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2025-03-26 17:09:22 +08:00
|
|
|
|
<maven.test.skip>true</maven.test.skip>
|
2025-11-26 18:51:59 +08:00
|
|
|
|
<javacv.version>1.5.10</javacv.version>
|
2025-05-09 20:10:04 +08:00
|
|
|
|
<javacv.ffmpeg.version>5.1.2-1.5.8</javacv.ffmpeg.version>
|
2025-02-21 11:26:58 +08:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
2025-04-28 16:13:34 +08:00
|
|
|
|
<groupId>cn.smartjavaai</groupId>
|
2025-08-29 10:30:35 +08:00
|
|
|
|
<artifactId>common</artifactId>
|
2025-02-21 11:26:58 +08:00
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
|
</dependency>
|
2025-03-26 17:09:22 +08:00
|
|
|
|
|
|
|
|
|
|
<dependency>
|
2025-04-19 19:48:12 +08:00
|
|
|
|
<groupId>io.gitee.dengwenjie</groupId>
|
|
|
|
|
|
<artifactId>seeta-sdk-platform</artifactId>
|
|
|
|
|
|
<version>1.2.2</version>
|
2025-03-26 17:09:22 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
|
|
|
|
<version>3.36.0.3</version>
|
|
|
|
|
|
</dependency>
|
2025-04-28 16:13:34 +08:00
|
|
|
|
|
2025-06-09 12:12:10 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.milvus</groupId>
|
|
|
|
|
|
<artifactId>milvus-sdk-java</artifactId>
|
|
|
|
|
|
<version>2.5.7</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-05-09 20:10:04 +08:00
|
|
|
|
|
2025-11-26 18:51:59 +08:00
|
|
|
|
|
|
|
|
|
|
|
2025-02-21 11:26:58 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
2025-02-23 12:56:50 +08:00
|
|
|
|
<build>
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
|
2025-03-26 17:09:22 +08:00
|
|
|
|
|
2025-02-23 12:56:50 +08:00
|
|
|
|
<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>
|