1 Star 0 Fork 327

dychang / open-anpr

forked from open-visual / open-anpr 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 5.83 KB
一键复制 编辑 原始数据 按行查看 历史
divenswu 提交于 2023-04-13 10:50 . [update]:更新版本到1.1.0
<?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>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.5</version>
<relativePath/>
</parent>
<groupId>com.visual.open.anpr</groupId>
<artifactId>open-anpr</artifactId>
<packaging>pom</packaging>
<version>1.1.0</version>
<modules>
<module>open-anpr-core</module>
<module>open-anpr-server</module>
<module>open-anpr-test</module>
<module>open-anpr-client</module>
</modules>
<properties>
<opencv.version>4.6.0-0</opencv.version>
<onnxruntime.version>1.13.1</onnxruntime.version>
<fastjson.version>1.2.83</fastjson.version>
<hibernate.version>6.0.21.Final</hibernate.version>
<commons-math3.version>3.6.1</commons-math3.version>
<commons-collections4.version>4.3</commons-collections4.version>
<swagger.version>3.0.0</swagger.version>
<knife4j-ui.version>3.0.3</knife4j-ui.version>
<java.version>8</java.version>
<maven-resources-plugin.version>2.6</maven-resources-plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.visual.open.anpr</groupId>
<artifactId>open-anpr-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.visual.open.anpr</groupId>
<artifactId>open-anpr-server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.visual.open.anpr</groupId>
<artifactId>open-anpr-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.openpnp</groupId>
<artifactId>opencv</artifactId>
<version>${opencv.version}</version>
</dependency>
<dependency>
<groupId>com.microsoft.onnxruntime</groupId>
<artifactId>onnxruntime</artifactId>
<version>${onnxruntime.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>${commons-collections4.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>${commons-math3.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>${hibernate.version}</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>${swagger.version}</version>
</dependency>
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-spring-boot-starter</artifactId>
<version>${knife4j-ui.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>docker</id>
<build>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/resources</directory>
<excludes>
<exclude>model/**</exclude>
<exclude>application-dev.yml</exclude>
<exclude>application-local.yml</exclude>
</excludes>
</resource>
</resources>
</build>
</profile>
</profiles>
<repositories>
<repository>
<id>public</id>
<name>aliyun nexus</name>
<url>https://maven.aliyun.com/repository/public</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>central</id>
<name>aliyun nexus</name>
<url>https://maven.aliyun.com/repository/central</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>public</id>
<name>aliyun nexus</name>
<url>https://maven.aliyun.com/repository/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/dychang/open-anpr.git
git@gitee.com:dychang/open-anpr.git
dychang
open-anpr
open-anpr
master

搜索帮助