<?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>com.vci</groupId>
|
<artifactId>plt-web-parent</artifactId>
|
<version>2024.1-SNAPSHOT</version>
|
</parent>
|
|
<artifactId>plt-web-permission</artifactId>
|
|
<properties>
|
<maven.compiler.source>8</maven.compiler.source>
|
<maven.compiler.target>8</maven.compiler.target>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<poi.version>4.1.0</poi.version>
|
</properties>
|
|
<dependencies>
|
<dependency>
|
<groupId>com.vci</groupId>
|
<artifactId>plt-web-api</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.vci</groupId>
|
<artifactId>plt-starter</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.vci</groupId>
|
<artifactId>plt-web-base</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.github.jsqlparser</groupId>
|
<artifactId>jsqlparser</artifactId>
|
<version>4.9</version>
|
</dependency>
|
<dependency>
|
<groupId>org.reflections</groupId>
|
<artifactId>reflections</artifactId>
|
<version>0.9.11</version>
|
</dependency>
|
<dependency><!--代码生成器所需模板-->
|
<artifactId>velocity</artifactId>
|
<groupId>org.apache.velocity</groupId>
|
<version>1.7</version>
|
</dependency>
|
|
<!--需要读取excel-->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi</artifactId>
|
<version>${poi.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-excelant</artifactId>
|
<version>${poi.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml-schemas</artifactId>
|
<version>${poi.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>${poi.version}</version>
|
</dependency>
|
</dependencies>
|
|
</project>
|