<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<groupId>com.chinaztt.mes.data-acquisition</groupId>
|
<artifactId>data-acquisition</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
<name>data-acquisition</name>
|
<description>data-acquisition</description>
|
<properties>
|
<java.version>1.8</java.version>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<spring-boot.version>2.6.3</spring-boot.version>
|
</properties>
|
<dependencies>
|
<!--lombok-->
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>net.sourceforge.tess4j</groupId>
|
<artifactId>tess4j</artifactId>
|
<version>5.12.0</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.xerial</groupId>
|
<artifactId>sqlite-jdbc</artifactId>
|
<version>3.34.0</version> <!-- Use the latest version -->
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>net.sf.ucanaccess</groupId>
|
<artifactId>ucanaccess</artifactId>
|
<version>5.0.1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi</artifactId>
|
<version>3.17</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>3.17</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-scratchpad -->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-scratchpad</artifactId>
|
<version>3.17</version>
|
</dependency>
|
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-all</artifactId>
|
<version>5.8.16</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>com.opencsv</groupId>
|
<artifactId>opencsv</artifactId>
|
<version>5.7.1</version>
|
</dependency>
|
|
</dependencies>
|
<dependencyManagement>
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-dependencies</artifactId>
|
<version>${spring-boot.version}</version>
|
<type>pom</type>
|
<scope>import</scope>
|
</dependency>
|
</dependencies>
|
</dependencyManagement>
|
|
<build>
|
<finalName>${project.name}</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<version>3.8.1</version>
|
<configuration>
|
<source>1.8</source>
|
<target>1.8</target>
|
<encoding>UTF-8</encoding>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<version>${spring-boot.version}</version>
|
<configuration>
|
<mainClass>com.chinaztt.mes.docx.DataAcquisitionApplication</mainClass>
|
<skip>false</skip>
|
</configuration>
|
<executions>
|
<execution>
|
<id>repackage</id>
|
<goals>
|
<goal>repackage</goal>
|
</goals>
|
</execution>
|
</executions>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|