123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.hosea.cloud.template</groupId>
- <artifactId>gateway</artifactId>
- <version>1.0.0</version>
- <name>Gateway Template ${version}</name>
- <description>网关模板</description>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <hosea-cloud.version>1.0.0</hosea-cloud.version>
- <service-user-client.version>1.0.0</service-user-client.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.hosea.cloud</groupId>
- <artifactId>cloud-gateway-maxkey</artifactId>
- <version>${hosea-cloud.version}</version>
- </dependency>
- <dependency>
- <groupId>com.hosea.cloud.user</groupId>
- <artifactId>service-user-client</artifactId>
- <version>${service-user-client.version}</version>
- <exclusions>
- <exclusion>
- <groupId>com.hosea.cloud</groupId>
- <artifactId>cloud-webmvc</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>17</source>
- <target>17</target>
- <encoding>${project.build.sourceEncoding}</encoding>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|