123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?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.tofly</groupId>
- <artifactId>hnls-admin</artifactId>
- <version>1.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <packaging>jar</packaging>
- <artifactId>hnls-admin-service</artifactId>
- <version>1.0.0</version>
- <dependencies>
- <!-- xxl-job -->
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-entity</artifactId>
- <version>1.0.3</version>
- </dependency>
- <dependency>
- <groupId>com.xuxueli</groupId>
- <artifactId>xxl-job-core</artifactId>
- <version>2.3.1</version>
- </dependency>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>hnls-admin-api</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- </dependency>
- <dependency>
- <groupId>org.thymeleaf</groupId>
- <artifactId>thymeleaf-spring5</artifactId>
- </dependency>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-ftp</artifactId>
- <version>1.0.3</version>
- </dependency>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-redis</artifactId>
- <version>1.0.3</version>
- </dependency>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-log</artifactId>
- <version>1.0.3</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>3.3.2</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.springframework.cloud</groupId>-->
- <!-- <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>-->
- <!-- <version>2.1.3.RELEASE</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>
- </plugin>
- </plugins>
- </build>
- </project>
|