标签:RoCE apache ext 选择 build boot http jdk 工程
第一步创建父级工程
*注意父级工程这块一定要选择pom
选择父级的pom文件
<!--父工程对版本进行一个管理 -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.1.1.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<!-- jdk版本进行限制 -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
第二创建父级工程的module 选择父级项目 创建module
标签:RoCE apache ext 选择 build boot http jdk 工程
原文地址:https://www.cnblogs.com/wang66a/p/12069304.html