117 lines
4.0 KiB
XML
117 lines
4.0 KiB
XML
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.3.12.RELEASE</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
<!--https://docs.spring.io/spring-boot/docs/2.3.12.RELEASE/reference/html/-->
|
|
</parent>
|
|
|
|
<groupId>io.wdd</groupId>
|
|
<artifactId>ProjectOctopus</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<version>1.0.0</version>
|
|
<name>ProjectOctopus</name>
|
|
<description>ProjectOctopus</description>
|
|
|
|
<modules>
|
|
<module>server</module>
|
|
<!--<module>agent</module>
|
|
<module>common</module>
|
|
<module>source</module>-->
|
|
</modules>
|
|
|
|
<properties>
|
|
<java.version>11</java.version>
|
|
<spring-shell.version>2.1.3</spring-shell.version>
|
|
<spring-boot-admin.version>2.7.4</spring-boot-admin.version>
|
|
<spring-cloud.version>Hoxton.SR12</spring-cloud.version>
|
|
<alibaba-cloud.version>2.2.6.RELEASE</alibaba-cloud.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
|
|
<!--<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
<scope>runtime</scope>
|
|
<optional>true</optional>
|
|
</dependency>-->
|
|
|
|
<!--<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>-->
|
|
|
|
<!-- spring cloud -->
|
|
<!--<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
<version>${spring-cloud.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>-->
|
|
<!-- spring cloud alibaba dependency -->
|
|
<!--<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
|
<version>${alibaba-cloud.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>-->
|
|
<!--<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-bootstrap</artifactId>
|
|
<version>3.1.5</version>
|
|
</dependency>-->
|
|
<!--<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
<version>${alibaba-cloud.version}</version>
|
|
</dependency>-->
|
|
|
|
<!--<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-quartz</artifactId>
|
|
</dependency>-->
|
|
|
|
</dependencies>
|
|
|
|
|
|
<!--<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.shell</groupId>
|
|
<artifactId>spring-shell-dependencies</artifactId>
|
|
<version>${spring-shell.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>-->
|
|
|
|
<!--<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>-->
|
|
|
|
</project>
|