|
|
<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>
|
|
|
<groupId>com.yuxue</groupId>
|
|
|
<artifactId>yx-image-recognition</artifactId>
|
|
|
<version>1.0.0</version>
|
|
|
<description>图像识别技术 车牌识别、训练等</description>
|
|
|
<properties>
|
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
</properties>
|
|
|
|
|
|
<parent>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
<version>2.1.5.RELEASE</version>
|
|
|
<relativePath />
|
|
|
</parent>
|
|
|
|
|
|
<dependencies>
|
|
|
<!-- AOP 支持 -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- SpringBoot Web项目依赖 -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 前端模板文件支持 -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
<optional>true</optional>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 单元测试 支持 -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- mybatis支持 -->
|
|
|
<dependency>
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
<version>1.3.2</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!--druid连接池-springBoot依赖 -->
|
|
|
<dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
<version>1.1.10</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 分页插件,一对多关系分页,页码会有问题,需要自行处理 -->
|
|
|
<dependency>
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
<artifactId>pagehelper</artifactId>
|
|
|
<version>5.1.3</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- sqlite数据库驱动 -->
|
|
|
<dependency>
|
|
|
<groupId>org.xerial</groupId>
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- pgsql数据库驱动 -->
|
|
|
<!-- <dependency>
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
</dependency> -->
|
|
|
|
|
|
<!-- mysql数据库驱动 -->
|
|
|
<!-- <dependency>
|
|
|
<groupId>mysql</groupId>
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
<scope>runtime</scope>
|
|
|
</dependency> -->
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
<version>1.2.7</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>io.springfox</groupId>
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
<version>2.4.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>io.springfox</groupId>
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
<version>2.4.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>commons-codec</groupId>
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/net.sourceforge.tess4j/tess4j -->
|
|
|
<!-- 图片文字识别 -->
|
|
|
<dependency>
|
|
|
<groupId>net.sourceforge.tess4j</groupId>
|
|
|
<artifactId>tess4j</artifactId>
|
|
|
<version>4.3.1</version>
|
|
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
|
|
|
<dependency>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
<version>1.18.12</version>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.bytedeco/opencv -->
|
|
|
<!-- 包含了opencv4.0.1 及javacpp1.4.4版本 -->
|
|
|
<dependency>
|
|
|
<groupId>org.bytedeco.javacpp-presets</groupId>
|
|
|
<artifactId>opencv</artifactId>
|
|
|
<version>4.0.1-1.4.4</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- org.bytedeco.javacpp-presets.opencv的包已经传递依赖了当前包 -->
|
|
|
<dependency>
|
|
|
<groupId>org.bytedeco</groupId>
|
|
|
<artifactId>javacpp</artifactId>
|
|
|
<version>1.4.4</version>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<!-- 引入这个包,会把所有平台的依赖包都导入,大小有200+M,实际上用不到 -->
|
|
|
<!-- 只需要从lib目录引入对应的操作系统版本包(lib/opencv-4.0.1-1.4.4-windows-x86_64.jar)即可 -->
|
|
|
<dependency>
|
|
|
<groupId>org.bytedeco.javacpp-presets</groupId>
|
|
|
<artifactId>opencv-platform</artifactId>
|
|
|
<version>4.0.1-1.4.4</version>
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<mainClass>com.yuxue.Application</mainClass>
|
|
|
<layout>ZIP</layout>
|
|
|
</configuration>
|
|
|
|
|
|
<executions>
|
|
|
<execution>
|
|
|
<goals>
|
|
|
<goal>repackage</goal>
|
|
|
</goals>
|
|
|
</execution>
|
|
|
</executions>
|
|
|
</plugin>
|
|
|
|
|
|
<plugin>
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
<version>1.2.1</version>
|
|
|
<executions>
|
|
|
<execution>
|
|
|
<goals>
|
|
|
<goal>java</goal>
|
|
|
</goals>
|
|
|
</execution>
|
|
|
</executions>
|
|
|
<configuration>
|
|
|
<mainClass>pl.stasiak.pytel.SnmpClientApplication</mainClass>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
|
<resources>
|
|
|
<resource>
|
|
|
<directory>src/main/resources</directory>
|
|
|
<includes>
|
|
|
<include>**/*.yml</include>
|
|
|
</includes>
|
|
|
<filtering>true</filtering>
|
|
|
</resource>
|
|
|
<resource>
|
|
|
<directory>src/main/resources</directory>
|
|
|
<includes>
|
|
|
<include>**/*.*</include>
|
|
|
</includes>
|
|
|
<filtering>false</filtering>
|
|
|
</resource>
|
|
|
<resource>
|
|
|
<directory>src/main/webapp</directory>
|
|
|
<includes>
|
|
|
<include>**/**</include>
|
|
|
</includes>
|
|
|
</resource>
|
|
|
</resources>
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
</project> |