import依赖范围的使用

前端之家收集整理的这篇文章主要介绍了import依赖范围的使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<!-- <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.9.RELEASE</version>
  </parent> -->
  <!-- 使用这种方式更灵活,但需要添加编译插件1.8版本的声明,否则默认为1.5 -->
  <dependencyManagement>
      <dependencies>
          <dependency>
              <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-dependencies</artifactId>
            <version>1.5.9.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
          </dependency>
      </dependencies>
  </dependencyManagement>

猜你在找的设计模式相关文章