Why netbeans 8 wants to install unused cordova plugins

I am trying to emulate a Cordova project in Netbeans 8. I am getting an error trying to clone plugins for a project. I would also like to solve this problem, but moreso does not understand why these plugins are needed. I do not use functions that need a camera, file transfer, or many others.

I can use npm to start the cordova plugin add xxx , but when restarting netbeans just trying to git clone the next plugin that I don't need. Why and how can I tell netbeans to skip them?

 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
source share
2 answers

my mistake, although the above works, it would seem that the best approach is through

 Project > Properties > Cordova > Plugins 

and deselect those you don’t want to include!)

+1
source

quickly found the answer, comment out the plugintask in the build.xml file

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

This will not solve the problem that my Netbeans 8 installation cannot clone repositories

+1
source

Source: https://habr.com/ru/post/1236829/


All Articles