mirror of
https://gitee.com/glorylion/pointlion-oa.git
synced 2025-12-30 10:12:27 +00:00
130 lines
3.8 KiB
XML
130 lines
3.8 KiB
XML
<?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">
|
|
<parent>
|
|
<artifactId>pointlion</artifactId>
|
|
<groupId>com.pointlion</groupId>
|
|
<version>3.8.3</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>PointLion</artifactId>
|
|
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.pointlion</groupId>
|
|
<artifactId>pointlion-framework</artifactId>
|
|
</dependency>
|
|
|
|
<!-- hutool常用工具类 -->
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.pointlion</groupId>
|
|
<artifactId>pointlion-common</artifactId>
|
|
</dependency>
|
|
<!-- flowable 流程引擎-->
|
|
<dependency>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-spring-boot-starter-rest-api</artifactId>
|
|
<version>${flowable.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-json-converter</artifactId>
|
|
<version>${flowable.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-bpmn-model</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- xml解析依赖-->
|
|
<dependency>
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
<artifactId>batik-codec</artifactId>
|
|
<version>1.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
<artifactId>batik-css</artifactId>
|
|
<version> 1.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
<artifactId>batik-svg-dom</artifactId>
|
|
<version>1.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
<artifactId>batik-svggen</artifactId>
|
|
<version>1.7</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- 阿里JSON解析器 -->
|
|
<dependency>
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
<artifactId>fastjson2</artifactId>
|
|
</dependency>
|
|
<!-- xml解析依赖-->
|
|
<!--activiti modeler 5.22 end-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--用于构造http请求-->
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
</dependency>
|
|
<!--针对开发IO流功能的工具类库-->
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.docx4j</groupId>
|
|
<artifactId>docx4j-export-fo</artifactId>
|
|
<version>6.1.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.itextpdf.tool</groupId>
|
|
<artifactId>xmlworker</artifactId>
|
|
<version>5.5.8</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>itext-asian</artifactId>
|
|
<version>5.2.0</version>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
</properties>
|
|
|
|
</project> |