簡介
GitHub is a web-based hosting service for projects that user the Git revision control system. It is a social networking where you can share your code. java
GitHub中的Maven項目通常沒有本地配置文件(主要是爲了去除依賴,使項目總體結構清晰)。 git
可是當導入Github的Maven項目,並與本地的Eclipse直接結成,總有些困難,直到Eclipse 4.2(Juno). 本文介紹如何導入github項目,並直接與eclipse集成。 github
引文
本文是在Windows 7下進行,下面的軟件將被安裝,並使之一塊兒工做 :
1. Eclipse: Eclipse IDE(本文使用eclipse-4.2)
2. Java: Java編程語言(本文使用java-1.7.0_05)
3. Maven: Java項目管理工具(本文使用mava-3.0.4)
4. Druid: JDBC Connection Pool(本文使用Druid項目爲例) web
條件準備
- GitHub流程, Set up git, Create a repo, Fork a repo, Be social. 參考GitHub Help.
- 生成ssh keys. 參考Generating SSH Keys.
- 有項目的push權限
- Java, Eclipse, Maven安裝正確
配置
Maven配置
Eclipse-4.2使用的Maven版本默認爲maven-3.0.4, 可是仍是建議設置一下:
版本設置: Window > Preferences > Maven > Installations
用戶設置: Window > Preferences > Maven > User Settings apache
SSH配置
SSH2設置: Window > Preferences > General > Network Connections > SSH2
注意設置SSH2 home及private keys. 編程
導入項目
1.右鍵 > Import > Project from Git eclipse
2.選擇URI ssh
3.輸入Remote Git Repo的配置信息 maven
注意:Protocol使用ssh, User使用git, Password爲帳戶在github的密碼 編程語言
4.查找遠程分支信息
5.選擇分支
6.選擇本地目標位置
7.從版本倉庫中進行Clone
8.接受文件中
9.選擇導入項目類型
注意: 選擇Import as general project
10.確認項目名稱
11.項目以下
注意: 此時項目爲General Project不是Maven project, 須要手工修改配置文件。可是由[druid master]能夠看出,已是一個帶版本控制的項目了。
修改項目配置文件
因爲導入的是普通項目,須要轉化成Maven Project。Eclipse中項目的主要配置文件是.classpath和.project,還有.settings文件夾。
原項目爲General project, 只有.project文件,其.project配置文件內容以下
- <?xml version="1.0" encoding="UTF-8"?>
- <projectDescription>
- <name>druid</name>
- <comment></comment>
- <projects></projects>
- <buildSpec></buildSpec>
- <natures></natures>
- </projectDescription>
須要修改.project,並添加.classpath文件:
- <?xml version="1.0" encoding="UTF-8"?>
- <projectDescription>
- <name>druid</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.eclipse.m2e.core.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.jdt.core.javanature</nature>
- <nature>org.eclipse.m2e.core.maven2Nature</nature>
- </natures>
- </projectDescription>
還有.classpath文件
- <?xml version="1.0" encoding="UTF-8"?>
- <classpath>
- <classpathentry kind="src" output="target/classes" path="src/main/java">
- <attributes>
- <attribute name="optional" value="true"/>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
- <attributes>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry kind="src" output="target/test-classes" path="src/test/java">
- <attributes>
- <attribute name="optional" value="true"/>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
- <attributes>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5">
- <attributes>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
- <attributes>
- <attribute name="maven.pomderived" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry kind="output" path="target/classes"/>
- </classpath>
刷新項目
在項目上右鍵 > Refresh.
若是還有錯誤,能夠在項目上右鍵 > Maven > Update project.. > OK, Eclipse 會自動從新創建.settings文件夾。
此時項目完成,能夠直接提交到GitHub了。