Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,9 @@ class RequiredPluginsClasspathContainer {
private IClasspathEntry[] fEntries;
private boolean addImportedPackages;

private static final boolean ADD_TRANSITIVE_DEPENDENCIES_WITH_FORBIDDEN_ACCESS = Boolean
.parseBoolean(System.getProperty("pde.addTransitiveDependenciesWithForbiddenAccess", "true")); //$NON-NLS-1$ //$NON-NLS-2$
Comment thread
HannesWell marked this conversation as resolved.

/**
* Cached list of {@link IClasspathContributor} from plug-in extensions
*
Expand Down Expand Up @@ -274,7 +277,9 @@ private List<IClasspathEntry> computePluginEntriesByModel() throws CoreException

addJunit5RuntimeDependencies(added, entries);
addImplicitDependencies(desc, added, entries);
addTransitiveDependenciesWithForbiddenAccess(added, entries);
if (ADD_TRANSITIVE_DEPENDENCIES_WITH_FORBIDDEN_ACCESS) {
addTransitiveDependenciesWithForbiddenAccess(added, entries);
}

// Add any additional library entries contributed via classpath
// contributor
Expand Down
Loading