2014-05-24 37 views
1

我試圖模仿Netbeans 8中的Cordova項目。我在嘗試克隆項目的插件時遇到錯誤。我也想解決這個問題,但更多的不明白爲什麼需要這些插件。我沒有使用需要相機,文件傳輸或其他功能的功能。netbeans 8爲什麼要安裝未使用的cordova插件

我可以使用npm來運行cordova plugin add xxx,但是當我重新運行時,netbeans只是試圖克隆下一個我不需要的插件。爲什麼以及如何告訴netbeans跳過它們?

ant -f C:\\DATA\\TripChi\\dev\\tripchimobile\\nbproject -Dandroid.target.device.arg=emulate -Denv.DISPLAY=:0.0 "-Dupdate.task.jar=C:\\Program Files\\NetBeans 8.0\\webcommon\\ant\\extra\\org-netbeans-modules-cordova-projectupdate.jar" -Dandroid.sdk.home=C:\\Android\\android-sdks -Dandroid.build.target=android-17 -Dstart.file=index.html -Dandroid.project.activity=tripchimobile -Dconfig=android "-Dios.certificate.name=iPhone Developer" -Dsite.root=www "-Dcordova.version=3.4.1-0.1.0 
" sim-android 
check-android-template: 
check-cordova-version: 
check-cordova-project: 
upgrade-to-cordova-project: 
create-android: 
update-plugins: 
cordova.cmd plugins 
cordova.cmd -d plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer.git 
Calling plugman.fetch on plugin "https://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer.git" 
Fetching plugin "https://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer.git" via git clone 
Fetching plugin via git-clone command: git clone "https://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer.git" "c:\DOCUME~1\ELIA~1.TAY\LOCALS~1\Temp\plugman\git\1400970893221" 
Error: Command failed: cmd.exe /s /c "git clone "https://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer.git" "c:\DOCUME~1\ELIA~1.TAY\LOCALS~1\Temp\plugman\git\1400970893221"" 
fatal: could not create work tree dir 'c:\DOCUME~1\ELIA~1.TAY\LOCALS~1\Temp\plugman\git\1400970893221'.: No such file or directory 

    at ChildProcess.exithandler (child_process.js:729:12) 
    at ChildProcess.EventEmitter.emit (events.js:110:17) 
    at maybeClose (child_process.js:992:16) 
    at Process.ChildProcess._handle.onexit (child_process.js:1059:5) 
C:\DATA\TripChi\dev\tripchimobile\nbproject\build.xml:232: exec returned: 1 
BUILD FAILED (total time: 2 seconds) 

回答

1

我的錯誤問題,而以上的作品,看似更好的辦法是通過

Project > Properties > Cordova > Plugins 

and desele ct你不想包括的那些!)

1

很快找到了答案,註釋掉plugintask build.xml中

<target name="update-plugins"> 
<!-- <plugintask/>--> 
    </target> 

這並沒有解決我的Netbeans的8的安裝無法克隆庫

相關問題