12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?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.yihu</groupId>
- <artifactId>svr-lib-parent-pom</artifactId>
- <version>1.0.0</version>
- <packaging>pom</packaging>
- <developers>
- <developer>
- <id>cwd</id>
- <name>陈伟达</name>
- <email>494679975@qq.com</email>
- <organizationUrl>localhost</organizationUrl>
- <roles>
- <role>Project programmer</role>
- </roles>
- </developer>
- </developers>
- <modules>
- <module>../svr-configuration</module> <!--配置服务-->
- <module>../svr-discovery</module><!--发现服务-->
- <!--业务微服务-->
- <module>../svr/svr-user</module><!--用户微服务-->
- </modules>
- <properties>
- <version.springCloud>1.3.0.RELEASE</version.springCloud>
- <version.springBoot>1.5.3.RELEASE</version.springBoot>
- </properties>
- <!--dependencyManagement作用子配置不写版本默认继承父配置-->
- <dependencyManagement>
- <dependencies>
- <!--springCloud start-->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-eureka-server</artifactId>
- <version>${version.springCloud}</version>
- </dependency>
- <!--springCloud end-->
- <!--springBoot start-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot</artifactId>
- <version>${version.springBoot}</version>
- </dependency>
- <!--springBoot end-->
- </dependencies>
- </dependencyManagement>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- <version>3.1</version>
- </plugin>
- </plugins>
- </build>
- </project>
|