1. 程式人生 > >Eclipse 從SVN檢出專案之《資料夾 “” 已不存在 》

Eclipse 從SVN檢出專案之《資料夾 “” 已不存在 》

1.eclipse 從svn檢出專案 報資料夾不存在,

參考部落格

2.You need to run build with JDK or have tools.jar on the classpath.If this occures during eclipse build make sure you run eclipse under JDK as well 

參考部落格

3.提示java tool

新增依賴,指向自己jdk的目錄

        <!-- is -->
        <dependency>  
             <groupId>com.sun</groupId>  
             <artifactId>tools</artifactId>  
             <version>1.8.0</version>  
             <scope>system</scope>         
             <systemPath>C:/Program Files/Java/jdk1.8.0_131/lib/tools.jar</systemPath> 
         </dependency>
         <!-- my -->