How do I prevent Eclipse from indexing things in Maven repo JAR files? -


i’m using eclipse kepler on mac 10.9.5, m2eclipse plugin , maven 3.2.3. prevent eclipse indexing jar files, in particular things referenced in m2_repo directory. within eclipse, click shift+command+t, type “orderserviceimpl” (a name of class in project), , saw

orderserviceimpl - org.mainco.subco.myproject.service - orders/src/main/java  orderserviceimpl - org.mainco.subco.myproject.service - m2_repo/org/mainco/subco/orders/79.0.0-snapshot/orders-79.0.0-snapshot.jar - /users/davea/.m2/repository/org/mainco/subco/orders/79.0.0-snapshot/orders-79.0.0-snapshot.jar 

is there way can prevent eclipse indexing things in jar files? exclude of them if that’s not possible, @ least things included in m2_repo directory (dependencies brought in through pom.xml file).

regardless of eclipse indexes, can specify filters on "open type" window shows using working sets:

enter image description here


Comments

Popular posts from this blog

facebook - android ACTION_SEND to share with specific application only -

python - Creating a new virtualenv gives a permissions error -

go - Idiomatic way to handle template errors in golang -