阅读背景:

配置阿里云gradle

来源:互联网 

build.gradle

buildscript {
    ext {
	springBootVersion = '1.5.15.BUILD-SNAPSHOT'
    }
    repositories {
	// mavenCentral()
	maven {url "https://maven.aliyun.com/nexus/content/groups/public/" }
	maven { url "https://repo.spring.io/snapshot" }
	maven { url "https://repo.spring.io/milestone" }
    }
    dependencies {
	classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
    }
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'

group = 'com.waylau.spring.boot.blog'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8

repositories {
    // mavenCentral()
    maven {url "https://maven.aliyun.com/nexus/content/groups/public/" }
    maven { url "https://repo.spring.io/snapshot" }
    maven { url "https://repo.spring.io/milestone" }
}


dependencies {
    compile('org.springframework.boot:spring-boot-starter-web')
    testCompile('org.springframework.boot:spring-boot-starter-test')
}
buildscript {
    ext {
	spri



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: