You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
4.2 KiB
112 lines
4.2 KiB
<?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>
|
|
<groupId>com.yxt</groupId>
|
|
<artifactId>yxt-parent</artifactId>
|
|
<version>0.0.1</version>
|
|
<relativePath/>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jlzx-single-pageoffice-biz</artifactId>
|
|
<groupId>com.yxt.jlzx</groupId>
|
|
<version>0.0.1</version>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.yxt</groupId>
|
|
<artifactId>yxt-common-base</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.yxt.jlzx</groupId>
|
|
<artifactId>jlzx-single-system-api</artifactId>
|
|
<version>0.0.1</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-thymeleaf</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.zhuozhengsoft</groupId>
|
|
<artifactId>pageoffice</artifactId>
|
|
<version>5.1.0.1</version>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.zhuozhengsoft</groupId>-->
|
|
<!-- <artifactId>pageoffice</artifactId>-->
|
|
<!-- <version>5.1.0.1</version>-->
|
|
<!-- <scope>system</scope>-->
|
|
<!-- <systemPath>${project.basedir}/lib/pageoffice-5.1.0.1.jar</systemPath>-->
|
|
<!-- </dependency>-->
|
|
<dependency>
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jacob</groupId>
|
|
<artifactId>jacob</artifactId>
|
|
<version>1.18</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<includeSystemScope>true</includeSystemScope>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<!-- <resources>-->
|
|
<!-- <resource>-->
|
|
<!-- <directory>src/main/java</directory>-->
|
|
<!-- <includes>-->
|
|
<!-- <include>**/*Mapper.xml</include>-->
|
|
<!-- </includes>-->
|
|
<!-- </resource>-->
|
|
<!-- <resource>-->
|
|
<!-- <directory>src/main/resources</directory>-->
|
|
<!-- <includes>-->
|
|
<!-- <include>**/*.yml</include>-->
|
|
<!-- </includes>-->
|
|
<!-- <filtering>false</filtering>-->
|
|
<!-- </resource>-->
|
|
<!-- <resource>-->
|
|
<!-- <directory>lib</directory>-->
|
|
<!-- <targetPath>/BOOT-INF/lib/</targetPath>-->
|
|
<!-- <includes>-->
|
|
<!-- <include>**/*.jar</include>-->
|
|
<!-- </includes>-->
|
|
<!-- </resource>-->
|
|
<!-- </resources>-->
|
|
</build>
|
|
|
|
</project>
|