eureka1.9.5 原始碼匯入到eclipse
-
在eclipse中安裝gradle外掛
-
從git上匯入eureka 1.x最新版本程式碼
-
修改匯入的工程中的build.gradle檔案 注:標紅的都是修改的地方
buildscript { repositories { jcenter() mavenCentral() maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' url 'https://plugins.gradle.org/m2/' } }
dependencies { classpath 'com.netflix.nebula:gradle-netflixoss-project-plugin:4.0.2' classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:3.2.0'
subprojects { apply plugin: 'nebula.netflixoss' apply plugin: 'nebula.provided-base' apply plugin: 'java'
group = "com.netflix.${githubProjectName}"
sourceCompatibility = 1.8 targetCompatibility = 1.8
repositories { jcenter() }
test { forkEvery = 1 // setting this property prevents java from grabbing focus when running the tests under osx systemProperty 'java.awt.headless', 'true' }
jar { manifest { attributes('Build-Time-ISO-8601': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")) } } }
-
在eclipse 中選擇 即可匯入成功,本人已經匯入成功。
-
匯入成功後如下圖所示,就可以學習原始碼了。