zoukankan      html  css  js  c++  java
  • maven/gradle版本统一示例

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>Dalston.SR3</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
    dependencyManagement {
        imports {
            mavenBom 'org.springframework.boot:spring-boot-starter-parent:1.5.6.RELEASE'
            mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Dalston.SR3'
        }
    }
    buildscript {
        dependencies {
            classpath "io.spring.gradle:dependency-management-plugin:1.0.7.RELEASE"
            classpath "org.springframework.boot:spring-boot-gradle-plugin:1.5.6.RELEASE"
        }
        repositories {
            maven { url "http://maven.aliyun.com/nexus/content/groups/public" }
        }
    }
    
    apply plugin: 'java'
    apply plugin: 'idea'
    apply plugin: 'maven'
    apply plugin: 'io.spring.dependency-management'
    
    group = 'com'
    version = '0.0.1-SNAPSHOT'
    sourceCompatibility = '1.8'
    
    dependencyManagement {
        imports {
            mavenBom 'org.springframework.boot:spring-boot-starter-parent:1.5.6.RELEASE'
            mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Dalston.SR3'
        }
    }
    
    
    repositories {
        maven { url "http://maven.aliyun.com/nexus/content/groups/public" }
    }
    
    dependencies {
        implementation 'org.springframework.boot:spring-boot-starter-web'
        implementation 'org.springframework.cloud:spring-cloud-starter-sleuth'
        implementation 'org.json:json:20180813'
        testImplementation 'org.springframework.boot:spring-boot-starter-test'
    }
  • 相关阅读:
    8.使用axios实现登录功能
    7.django配置跨域并开发测试接口
    9.Vue组件
    2.初始化项目结构
    1.Django基础
    团队冲刺——第七天
    团队冲刺——第六天
    十天冲刺——第五天
    十天冲刺——第四天
    十天冲刺——第三天
  • 原文地址:https://www.cnblogs.com/lu51211314/p/10474602.html
Copyright © 2011-2022 走看看