2019-12-21 16:54:06 +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>
|
|
|
|
|
|
2024-11-22 22:16:46 +08:00
|
|
|
|
<groupId>org.dromara.easyai</groupId>
|
2020-02-29 11:17:50 +08:00
|
|
|
|
<artifactId>easyAi</artifactId>
|
2024-11-28 10:37:58 +08:00
|
|
|
|
<version>1.2.91</version>
|
2019-12-21 16:54:06 +08:00
|
|
|
|
|
2020-02-29 11:30:57 +08:00
|
|
|
|
<name>easyAi</name>
|
2024-10-10 18:27:47 +08:00
|
|
|
|
<description>EasyAi无任何依赖,它是一个原生Java人工智能算法框架。首先,它可以Maven一键丝滑引入我们的Java项目,无需任何额外的环境配置与依赖,做到开箱即用。再者,它既有一些我们已经封装好的图像目标检测及人工智能客服的模块,也提供各种深度学习,机器学习,强化学习,启发式学习,矩阵运算等底层算法工具。开发者可以通过简单的学习,就能完成根据自身业务,深度开发符合自己业务的小微模型。</description>
|
2019-12-21 16:54:06 +08:00
|
|
|
|
<!-- FIXME change it to the project's website -->
|
2024-10-10 18:27:47 +08:00
|
|
|
|
<url>https://gitee.com/dromara/easyAi.git</url>
|
|
|
|
|
<licenses>
|
|
|
|
|
<license>
|
|
|
|
|
<name>The Apache License, Version 2.0</name>
|
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
|
</license>
|
|
|
|
|
</licenses>
|
2024-10-15 09:39:07 +08:00
|
|
|
|
<developers>
|
|
|
|
|
<developer>
|
|
|
|
|
<id>lidapeng</id>
|
|
|
|
|
<name>lidapeng</name>
|
|
|
|
|
<email>794757862@qq.com</email>
|
|
|
|
|
</developer>
|
|
|
|
|
</developers>
|
2024-10-10 18:27:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>ossrh</id>
|
|
|
|
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
|
</snapshotRepository>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>ossrh</id>
|
|
|
|
|
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
|
<connection>scm:git:git://gitee.com/dromara/easyAi.git</connection>
|
|
|
|
|
<developerConnection>scm:git:ssh://gitee.com/dromara/easyAi.git</developerConnection>
|
|
|
|
|
<url>https://gitee.com/dromara/easyAi</url>
|
|
|
|
|
</scm>
|
2019-12-21 16:54:06 +08:00
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
|
</properties>
|
2020-01-18 13:44:09 +08:00
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
<version>1.2.51</version>
|
2024-05-02 13:13:29 +08:00
|
|
|
|
<scope>test</scope>
|
2020-01-18 13:44:09 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
2019-12-21 16:54:06 +08:00
|
|
|
|
<build>
|
2024-10-11 14:57:48 +08:00
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.8.1</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<version>3.2.1</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-sources</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<version>3.2.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
|
|
|
|
|
<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.2.5</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
|
<phase>verify</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>sign</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<gpgArguments>
|
|
|
|
|
<arg>--pinentry-mode</arg>
|
|
|
|
|
<arg>loopback</arg>
|
|
|
|
|
</gpgArguments>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.sonatype.central</groupId>
|
|
|
|
|
<artifactId>central-publishing-maven-plugin</artifactId>
|
|
|
|
|
<version>0.5.0</version>
|
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<publishingServerId>central</publishingServerId>
|
|
|
|
|
<autoPublish>true</autoPublish>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
2019-12-21 16:54:06 +08:00
|
|
|
|
</build>
|
|
|
|
|
</project>
|