|
@@ -0,0 +1,110 @@
|
|
|
+<?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>blade-service</artifactId>
|
|
|
+ <groupId>org.springblade</groupId>
|
|
|
+ <version>2.9.1.RELEASE</version>
|
|
|
+ </parent>
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+
|
|
|
+ <artifactId>blade-archive</artifactId>
|
|
|
+ <name>${project.artifactId}</name>
|
|
|
+ <version>${bladex.project.version}</version>
|
|
|
+ <packaging>jar</packaging>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springblade</groupId>
|
|
|
+ <artifactId>blade-core-boot</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springblade</groupId>
|
|
|
+ <artifactId>blade-starter-swagger</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springblade</groupId>
|
|
|
+ <artifactId>blade-archive-api</artifactId>
|
|
|
+ <version>${bladex.project.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!--调用后台管理的API-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springblade</groupId>
|
|
|
+ <artifactId>blade-manager-api</artifactId>
|
|
|
+ <version>${bladex.project.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!--调用用户管理的API-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springblade</groupId>
|
|
|
+ <artifactId>blade-user-api</artifactId>
|
|
|
+ <version>${bladex.project.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springblade</groupId>
|
|
|
+ <artifactId>blade-core-cloud</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi-ooxml</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>easyexcel</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springblade</groupId>
|
|
|
+ <artifactId>blade-starter-excel</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.itextpdf</groupId>
|
|
|
+ <artifactId>itextpdf</artifactId>
|
|
|
+ <version>5.5.13</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springblade</groupId>
|
|
|
+ <artifactId>blade-e-visa-api</artifactId>
|
|
|
+ <version>2.9.1.RELEASE</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>e-iceblue</groupId>
|
|
|
+ <artifactId>spire.office.free</artifactId>
|
|
|
+ <version>5.3.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aspose</groupId>
|
|
|
+ <artifactId>aspose-cells</artifactId>
|
|
|
+ <version>20.4</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springblade</groupId>
|
|
|
+ <artifactId>blade-business-api</artifactId>
|
|
|
+ <version>2.9.1.RELEASE</version>
|
|
|
+ <scope>compile</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <source>${java.version}</source>
|
|
|
+ <target>${java.version}</target>
|
|
|
+ <encoding>${project.build.sourceEncoding}</encoding>
|
|
|
+ <compilerArguments>
|
|
|
+ <bootclasspath>${java.home}/lib/rt.jar:${java.home}/lib/jce.jar:${java.home}/lib/jsse.jar
|
|
|
+ </bootclasspath>
|
|
|
+ </compilerArguments>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+
|
|
|
+</project>
|