67 lines
2.2 KiB
XML
67 lines
2.2 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<parent>
|
||
<artifactId>springcloud-project</artifactId>
|
||
<groupId>com.xjs</groupId>
|
||
<version>1.0</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<packaging>pom</packaging>
|
||
<name>Eureka注册中心</name>
|
||
<modules>
|
||
<module>eureka-server-8761</module>
|
||
<module>eureka-server-8762</module>
|
||
<module>eureka-server-8763</module>
|
||
<module>eureka-client-provider</module>
|
||
<module>eureka-client-consumer</module>
|
||
</modules>
|
||
|
||
<artifactId>eureka</artifactId>
|
||
|
||
<properties>
|
||
<maven.compiler.source>11</maven.compiler.source>
|
||
<maven.compiler.target>11</maven.compiler.target>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<!--引⼊Jaxb,开始-->
|
||
<dependency>
|
||
<groupId>com.sun.xml.bind</groupId>
|
||
<artifactId>jaxb-core</artifactId>
|
||
<version>2.2.11</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>javax.xml.bind</groupId>
|
||
<artifactId>jaxb-api</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.sun.xml.bind</groupId>
|
||
<artifactId>jaxb-impl</artifactId>
|
||
<version>2.2.11</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.glassfish.jaxb</groupId>
|
||
<artifactId>jaxb-runtime</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>javax.activation</groupId>
|
||
<artifactId>activation</artifactId>
|
||
<version>1.1.1</version>
|
||
</dependency>
|
||
<!--引⼊Jaxb,结束-->
|
||
</dependencies>
|
||
|
||
<dependencyManagement>
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-commons</artifactId>
|
||
<version>3.0.4</version>
|
||
</dependency>
|
||
</dependencies>
|
||
</dependencyManagement>
|
||
|
||
</project>
|