首页 > 其他 > 详细

配置阿里云gradle

时间:2018-06-17 21:08:48      阅读:210      评论:0      收藏:0      [点我收藏+]

build.gradle

buildscript {
    ext {
	springBootVersion = ‘1.5.15.BUILD-SNAPSHOT‘
    }
    repositories {
	// mavenCentral()
	maven {url "http://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 "http://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‘)
}

  

配置阿里云gradle

原文:https://www.cnblogs.com/mingzhanghui/p/9193652.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!