Where is the "site update" list stored on the file system?

Updated 2 . Where is the list of software sites stored in the file system? I follow the file where this information is stored.

Eclipse Galileo 3.5 will not allow me to remove broken site repositories from the list. For instance. I am trying to get rid of the Bazaar update site.

+3
source share
4 answers

I used

find . -type f -exec grep -l "xxx.googlecode" "{}" \;

in the catalog ~/workspace/.metadata/.plugins

to find the occurrences of the SVN provider that I registered. I figured it out

./org.eclipse.core.runtime/.settings/org.eclipse.team.svn.core.prefs
./org.eclipse.core.resources/.projects/Jospital/.indexes/properties.index

This should lead you to launch. Locations may vary depending on which version control plugin you are using.


:

, , " ".

, Eclipse :

./eclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/epp.package.jee.profile/.data/.settings/org.eclipse.equinox.p2.artifact.repository.prefs
./eclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/epp.package.jee.profile/.data/.settings/org.eclipse.equinox.p2.metadata.repository.prefs

..., , .


:

, " " Eclipse, , , , - . , OK Remove?

​​ Eclipse. , , 2:

  • , ;
  • . Eclipse.

:

, , Disable Eclipse.

+3

:

Windows β†’ β†’ / β†’

+4

eclipse\p2\org.eclipse.equinox.p2.engine\profileRegistry\epp.package.java.profile\.data\.settings\org.eclipse.equinox.p2.metadata.repository.prefs\
  org.eclipse.equinox.p2.artifact.repository.prefs
  org.eclipse.equinox.p2.metadata.repository.prefs

, , Windows, 282740, 249133

+2
source

I would suggest that the files you are looking for are XML in

<eclipse>\p2\org.eclipse.equinox.p2.repository\cache
+1
source

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


All Articles