123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="http://maven.apache.org/POM/4.0.0"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <groupId>com.c503.ca.cadv</groupId>
- <artifactId>service</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>service-sys</artifactId>
- <packaging>jar</packaging>
- <dependencies>
- <!--本地依赖-->
- <dependency>
- <groupId>com.c503.ca.cadv</groupId>
- <artifactId>common-service</artifactId>
- <version>${project.release.version}</version>
- </dependency>
- <dependency>
- <groupId>com.c503.ca.cadv</groupId>
- <artifactId>enhance-ftp</artifactId>
- <version>${project.release.version}</version>
- </dependency>
- <dependency>
- <groupId>com.c503.ca.cadv</groupId>
- <artifactId>enhance-websocket</artifactId>
- <version>${project.release.version}</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>com.c503.ca.cadv</groupId>-->
- <!-- <artifactId>enhance-quartz</artifactId>-->
- <!-- <version>${project.release.version}</version>-->
- <!-- </dependency>-->
- <!--第三方依赖-->
- <dependency>
- <groupId>eu.bitwalker</groupId>
- <artifactId>UserAgentUtils</artifactId>
- <version>1.20</version>
- </dependency>
- <dependency>
- <groupId>de.codecentric</groupId>
- <artifactId>spring-boot-admin-starter-server</artifactId>
- <version>${springboot-admin.version}</version>
- </dependency>
- <dependency>
- <groupId>org.dom4j</groupId>
- <artifactId>dom4j</artifactId>
- <version>2.1.3</version>
- </dependency>
- <dependency>
- <groupId>jaxen</groupId>
- <artifactId>jaxen</artifactId>
- <version>1.1.6</version>
- </dependency>
- <!-- SpringBoot Web -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jboss.marshalling</groupId>
- <artifactId>jboss-marshalling-serial</artifactId>
- <version>2.0.10.Final</version>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>5.5.8</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>${spring-boot.version}</version>
- <configuration>
- <includeSystemScope>true</includeSystemScope>
- <layers>
- <enabled>true</enabled>
- </layers>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|