<?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>modules</artifactId>
|
<groupId>lifetime</groupId>
|
<version>1.0</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>modules-mainPart</artifactId>
|
<repositories>
|
<repository>
|
<id>com.e-iceblue</id>
|
<url>https://repo.e-iceblue.cn/repository/maven-public/</url>
|
</repository>
|
</repositories>
|
|
<dependencies>
|
<dependency>
|
<groupId>e-iceblue</groupId>
|
<artifactId>spire.doc.free</artifactId>
|
<version>3.9.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-math3</artifactId>
|
<version>3.6.1</version>
|
</dependency>
|
<dependency>
|
<groupId>junit</groupId>
|
<artifactId>junit</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.xmlgraphics</groupId>
|
<artifactId>fop</artifactId>
|
<version>2.6</version>
|
</dependency>
|
<dependency>
|
<groupId>org.dom4j</groupId>
|
<artifactId>dom4j</artifactId>
|
<version>2.1.3</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.xmlgraphics</groupId>
|
<artifactId>batik-all</artifactId>
|
<version>1.16</version>
|
</dependency>
|
<dependency>
|
<groupId>net.java.dev.jna</groupId>
|
<artifactId>jna</artifactId>
|
<version>4.1.0</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.2</version>
|
</dependency>
|
</dependencies>
|
<!-- pom.xml -->
|
|
<build>
|
<resources>
|
<resource>
|
<directory>src/main/resources</directory>
|
<filtering>false</filtering>
|
</resource>
|
</resources>
|
</build>
|
|
</project>
|