Unnamed: 0
int64
0
305k
body
stringlengths
7
52.9k
name
stringlengths
1
185
58,100
File () { return outputFile; }
getOutputFile
58,101
void (File outputFile) { this.outputFile = outputFile; }
setOutputFile
58,102
Collection<Configuration> () { if (configurations.isEmpty()) { return getProject().getConfigurations(); } Collection<Configuration> selectedProjectConfigurations = new ArrayList<>(); for (String configurationName : configurations) { Configuration configuration = getProject().getConfigurations().findByName(configuration...
getSelectedConfigurations
58,103
boolean (String modelName) { return ProjectDependencies.class.getName().equals(modelName); }
canBuild
58,104
Object (String modelName, Project project) { boolean resolveSourceSetDependencies = Boolean.parseBoolean(System.getProperty("idea.resolveSourceSetDependencies", "false")); if (!resolveSourceSetDependencies || !isIsNewDependencyResolutionApplicable()) return null; SourceSetContainer sourceSetContainer = JavaPluginUtil.g...
buildAll
58,105
void ( @NotNull String modelName, @NotNull Project project, @NotNull ModelBuilderContext context, @NotNull Exception exception ) { context.getMessageReporter().createMessage() .withGroup(Messages.DEPENDENCY_GRAPH_MODEL_GROUP) .withKind(Message.Kind.WARNING) .withTitle("Dependency graph model failure") .withException(ex...
reportErrorMessage
58,106
DependencyScopeNode ( @NotNull Configuration configuration, @NotNull Project project ) { if (!project.getConfigurations().contains(configuration)) { throw new IllegalArgumentException("configurations of the project should be used"); } IdGenerator idGenerator = new IdGenerator(nextId); ResolutionResult resolutionResult ...
buildDependencyGraph
58,107
DependencyNode ( DependencyResult dependency, Map<Object, DependencyNode> added, IdGenerator idGenerator ) { if (dependency instanceof ResolvedDependencyResult) { return buildResolvedDependencyNode((ResolvedDependencyResult)dependency, added, idGenerator); } else if (dependency instanceof UnresolvedDependencyResult) { ...
buildDependencyNode
58,108
DependencyNode ( @NotNull ResolvedDependencyResult dependency, @NotNull Map<Object, DependencyNode> added, @NotNull IdGenerator idGenerator ) { ResolvedComponentResult resolvedComponent = dependency.getSelected(); ComponentIdentifier componentId = resolvedComponent.getId(); long id = idGenerator.getId(componentId); if ...
buildResolvedDependencyNode
58,109
DependencyNode ( @NotNull UnresolvedDependencyResult dependency, @NotNull Map<Object, DependencyNode> added, @NotNull IdGenerator idGenerator ) { ComponentSelector attempted = dependency.getAttempted(); long id = idGenerator.getId(attempted); if (added.containsKey(id)) { return new ReferenceNode(id); } UnknownDependenc...
buildUnresolvedDependencyNode
58,110
long (Object key) { long newId = nextId.incrementAndGet(); Long existingId = idMap.putIfAbsent(key, newId); if (existingId != null) { return existingId; } return newId; }
getId
58,111
GradleModelFetchPhase () { return GradleModelFetchPhase.TASK_WARM_UP_PHASE; }
getPhase
58,112
void ( @NotNull BuildController controller, @NotNull GradleBuild buildModel, @NotNull BuildModelConsumer consumer ) { GradleModelProviderUtil.buildModels(controller, buildModel.getProjects(), GradleTaskModel.class); }
populateBuildModels
58,113
boolean (String modelName) { return GradleTaskModel.class.getName().equals(modelName); }
canBuild
58,114
Object (@NotNull String modelName, @NotNull Project project, @NotNull ModelBuilderContext context) { GradleTaskCache taskCache = GradleTaskCache.getInstance(context); Set<Task> projectTasks = collectProjectTasks(project, context); taskCache.setProjectTasks(project, projectTasks); return new GradleTaskModel() { }; }
buildAll
58,115
Set<Task> (@NotNull Project project, @NotNull ModelBuilderContext context) { try { GradleResultUtil.runOrRetryOnce(() -> { if (TASKS_REFRESH_REQUIRED) { refreshProjectTasks(project); } }); return GradleResultUtil.runOrRetryOnce(() -> { return new TreeSet<>(project.getTasks()); }); } catch (Exception exception) { contex...
collectProjectTasks
58,116
void (@NotNull Project project) { TaskContainer tasks = project.getTasks(); if (tasks instanceof DefaultTaskContainer) { ((DefaultTaskContainer)tasks).discoverTasks(); SortedSet<String> taskNames = tasks.getNames(); for (String taskName : taskNames) { tasks.findByName(taskName); } } }
refreshProjectTasks
58,117
void ( @NotNull String modelName, @NotNull Project project, @NotNull ModelBuilderContext context, @NotNull Exception exception ) { GradleTaskCache.getInstance(context) .markTaskModelAsError(project); context.getMessageReporter().createMessage() .withGroup(Messages.TASK_MODEL_GROUP) .withKind(Message.Kind.WARNING) .with...
reportErrorMessage
58,118
Set<Task> (@NotNull Project project) { Set<Task> result = new LinkedHashSet<>(getProjectTasks(project)); for (Project subProject : project.getSubprojects()) { result.addAll(getProjectTasks(subProject)); } return result; }
getAllTasks
58,119
Set<Task> (@NotNull Project project) { ProjectIdentifier projectIdentifier = GradleProjectUtil.getProjectIdentifier(project); Set<Task> projectTasks = allTasks.get(projectIdentifier); if (projectTasks == null) { context.getMessageReporter().createMessage() .withGroup(Messages.TASK_CACHE_GET_GROUP) .withTitle("Task mode...
getProjectTasks
58,120
void (@NotNull Project project, @NotNull Set<Task> tasks) { ProjectIdentifier projectIdentifier = GradleProjectUtil.getProjectIdentifier(project); Set<Task> previousTasks = allTasks.put(projectIdentifier, tasks); if (previousTasks != null) { context.getMessageReporter().createMessage() .withGroup(Messages.TASK_CACHE_SE...
setProjectTasks
58,121
void (@NotNull Project project) { ProjectIdentifier projectIdentifier = GradleProjectUtil.getProjectIdentifier(project); allTasks.put(projectIdentifier, Collections.emptySet()); }
markTaskModelAsError
58,122
GradleTaskCache (@NotNull ModelBuilderContext context) { return context.getData(INSTANCE_PROVIDER); }
getInstance
58,123
String (String string, boolean lower) { if (string == null) { return null; } else { StringBuilder builder = new StringBuilder(); Matcher matcher = WORD_SEPARATOR.matcher(string); int pos = 0; boolean first = true; while(true) { String chunk; do { if (!matcher.find()) { chunk = string.subSequence(pos, string.length()).t...
toCamelCase
58,124
String () { return group + ":" + module + ":" + version; }
getDisplayName
58,125
String () { return group; }
getGroup
58,126
String () { return module; }
getModule
58,127
String () { return version; }
getVersion
58,128
ModuleIdentifier () { return moduleIdentifier; }
getModuleIdentifier
58,129
boolean (Object o) { if (this == o) return true; if (!(o instanceof ModuleComponentIdentifier)) return false; ModuleComponentIdentifier that = (ModuleComponentIdentifier)o; if (!group.equals(that.getGroup())) return false; if (!module.equals(that.getModule())) return false; if (!version.equals(that.getVersion())) retur...
equals
58,130
int () { int result = group.hashCode(); result = 31 * result + module.hashCode(); result = 31 * result + version.hashCode(); return result; }
hashCode
58,131
String () { return getDisplayName(); }
toString
58,132
String () { return myGroup; }
getGroup
58,133
String () { return myModule; }
getName
58,134
Iterator<ExternalDependency> () { return new Itr(collection); }
iterator
58,135
boolean () { return !queue.isEmpty(); }
hasNext
58,136
ExternalDependency () { ExternalDependency dependency = queue.remove(); queue.addAll(dependency.getDependencies()); return dependency; }
next
58,137
void () { throw new UnsupportedOperationException("remove"); }
remove
58,138
boolean () { return IS_NEW_DEPENDENCY_RESOLUTION_APPLICABLE; }
isIsNewDependencyResolutionApplicable
58,139
Collection<ExternalDependency> (@Nullable String configurationName) { if (!IS_NEW_DEPENDENCY_RESOLUTION_APPLICABLE) { //noinspection deprecation return new DeprecatedDependencyResolver(myContext, myProject, false, myDownloadJavadoc, myDownloadSources) .resolveDependencies(configurationName); } if (configurationName == ...
resolveDependencies
58,140
Collection<ExternalDependency> (@Nullable Configuration configuration) { if (!IS_NEW_DEPENDENCY_RESOLUTION_APPLICABLE) { //noinspection deprecation return new DeprecatedDependencyResolver(myContext, myProject, false, myDownloadJavadoc, myDownloadSources) .resolveDependencies(configuration); } Collection<ExternalDepende...
resolveDependencies
58,141
Collection<ExternalDependency> (@NotNull final SourceSet sourceSet) { if (!IS_NEW_DEPENDENCY_RESOLUTION_APPLICABLE) { //noinspection deprecation return new DeprecatedDependencyResolver(myContext, myProject, false, myDownloadJavadoc, myDownloadSources) .resolveDependencies(sourceSet); } Collection<ExternalDependency> re...
resolveDependencies
58,142
FileCollection (SourceSet sourceSet) { final String compileTaskName = sourceSet.getCompileJavaTaskName(); Task compileTask = myProject.getTasks().findByName(compileTaskName); if (compileTask instanceof AbstractCompile) { try { return ((AbstractCompile)compileTask).getClasspath(); } catch (Exception e) { LOG.warn("Error...
getCompileClasspath
58,143
Collection<ExternalDependency> (@Nullable Configuration configuration, @Nullable String scope) { if (configuration == null) { return emptySet(); } // following statement should trigger parallel resolution of configurations artifacts // all subsequent iteration are expected to use cached results. try { configuration.get...
resolveDependencies
58,144
void (@NotNull ArtifactView.ViewConfiguration configuration) { configuration.setLenient(true); }
execute
58,145
ExternalProjectDependency (@NotNull ResolvedDependency resolvedDependency, @NotNull Map<ModuleVersionIdentifier, ResolvedDependencyResult> transformedProjectDependenciesResultMap, @NotNull Map<String, DefaultExternalProjectDependency> resolvedProjectDependencies, @Nullable String scope) { ModuleVersionIdentifier module...
getFailedToTransformProjectArtifactDependency
58,146
Collection<FileCollectionDependency> (@NotNull Set<String> resolvedFiles, @NotNull Configuration configuration, @Nullable String scope) { ArtifactView artifactView = configuration.getIncoming().artifactView(new Action<ArtifactView.ViewConfiguration>() { @Override public void execute(@SuppressWarnings("NullableProblems"...
resolveOtherFileDependencies
58,147
boolean (ComponentIdentifier identifier) { return !(identifier instanceof ProjectComponentIdentifier || identifier instanceof ModuleComponentIdentifier); }
isSatisfiedBy
58,148
void (@NotNull Collection<ExternalDependency> result, @NotNull LenientConfiguration lenientConfiguration, @Nullable String scope) { Set<UnresolvedDependency> unresolvedModuleDependencies = lenientConfiguration.getUnresolvedModuleDependencies(); for (UnresolvedDependency unresolvedDependency : unresolvedModuleDependenci...
addUnresolvedDependencies
58,149
Collection<ExternalDependency> (@NotNull SourceSetOutput sourceSetOutput, @Nullable String scope) { Collection<ExternalDependency> result = new ArrayList<>(2); List<File> files = new ArrayList<>(sourceSetOutput.getClassesDirs().getFiles()); files.add(sourceSetOutput.getResourcesDir()); DefaultFileCollectionDependency f...
resolveSourceOutputFileDependencies
58,150
FileCollectionDependency (@NotNull SourceSetOutput sourceSetOutput) { List<File> runtimeOutputDirs = new ArrayList<>(sourceSetOutput.getDirs().getFiles()); if (!runtimeOutputDirs.isEmpty()) { DefaultFileCollectionDependency runtimeOutputDirsDependency = new DefaultFileCollectionDependency(runtimeOutputDirs); runtimeOut...
resolveSourceSetOutputDirsRuntimeFileDependency
58,151
void (@NotNull Collection<? extends ExternalDependency> compileDependencies, @NotNull Collection<? extends ExternalDependency> runtimeDependencies) { Multimap<Collection<File>, ExternalDependency> filesToRuntimeDependenciesMap = HashMultimap.create(); for (ExternalDependency runtimeDependency : runtimeDependencies) { f...
filterRuntimeAndMarkCompileOnlyAsProvided
58,152
void (@NotNull SourceSet sourceSet, @NotNull Collection<ExternalDependency> result) { final Set<Configuration> providedConfigurations = new LinkedHashSet<>(); if (sourceSet.getName().equals("main") && myProject.getPlugins().findPlugin(WarPlugin.class) != null) { Configuration providedCompile = myProject.getConfiguratio...
addAdditionalProvidedDependencies
58,153
Collection<ExternalDependency> (@NotNull Iterable<?> fileCollections, @NotNull String scope) { Set<ExternalDependency> result = new LinkedHashSet<>(); for (Object fileCollection : fileCollections) { if (fileCollection instanceof FileCollection) { result.addAll(getDependencies((FileCollection)fileCollection, scope)); } ...
getDependencies
58,154
Collection<File> (ExternalDependency dependency) { if (dependency instanceof ExternalLibraryDependency) { return singleton(((ExternalLibraryDependency)dependency).getFile()); } else if (dependency instanceof FileCollectionDependency) { return ((FileCollectionDependency)dependency).getFiles(); } else if (dependency inst...
getFiles
58,155
ModuleComponentIdentifier (ModuleVersionIdentifier id) { return new ModuleComponentIdentifierImpl(id.getGroup(), id.getName(), id.getVersion()); }
toComponentIdentifier
58,156
ModuleComponentIdentifier (@NotNull String group, @NotNull String module, @NotNull String version) { return new ModuleComponentIdentifierImpl(group, module, version); }
toComponentIdentifier
58,157
Collection<File> () { return resolvedFiles; }
getResolvedFiles
58,158
Collection<ExternalDependency> () { return externalDeps; }
getExternalDeps
58,159
Set<File> () { return getFilesFromCache(myConfiguration); }
getDeprecatedCompileConfigurationFiles
58,160
Configuration () { return myCompileClasspathConfiguration; }
getCompileClasspathConfiguration
58,161
Set<File> () { return getFilesFromCache(myCompileConfiguration); }
getCompileConfigurationFiles
58,162
Set<File> () { return getFilesFromCache(myCompileOnlyConfiguration); }
getCompileOnlyConfigurationFiles
58,163
Set<File> (Configuration key) { if (key == null) { return null; } Set<File> cached = myConfigurationFilesCache.get(key); if (cached == null) { cached = key.getResolvedConfiguration().getLenientConfiguration().getFiles(Specs.SATISFIES_ALL); myConfigurationFilesCache.put(key, cached); } return cached; }
getFilesFromCache
58,164
Collection<ExternalDependency> () { return myDependencies; }
getDependencies
58,165
Collection<File> () { return myFiles; }
getFiles
58,166
CompileDependenciesProvider (DeprecatedDependencyResolver resolver) { // resolve compile dependencies boolean isMainSourceSet = mySourceSet.getName().equals(SourceSet.MAIN_SOURCE_SET_NAME); String deprecatedCompileConfigurationName = isMainSourceSet ? "compile" : StringUtils.toCamelCase(mySourceSet.getName(), false) + ...
resolve
58,167
boolean (Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; MyModuleIdentifier that = (MyModuleIdentifier)o; if (!Objects.equals(name, that.name)) return false; if (!Objects.equals(group, that.group)) return false; return true; }
equals
58,168
int () { int result = (group != null ? group.hashCode() : 0); result = 31 * result + (name != null ? name.hashCode() : 0); return result; }
hashCode
58,169
String () { return group + ":" + name; }
toString
58,170
ExternalDepsResolutionResult () { final Collection<ExternalDependency> extDependencies = new LinkedHashSet<>(); Class<? extends Component> jvmLibrary = tryLoadingJvmLibraryClass(); if (jvmLibrary == null) { return ExternalDepsResolutionResult.EMPTY; } LenientConfiguration lenientConfiguration = myConfiguration.getResol...
resolve
58,171
Collection<ExternalDependency> (Collection<ResolvedArtifact> resolvedArtifactToFilter, Collection<ProjectDependency> projectDepsToFilter) { Collection<ExternalDependency> result = new ArrayList<>(); Set<File> fileDeps = new LinkedHashSet<>(myConfiguration.getIncoming().getFiles().getFiles()); for (ResolvedArtifact arti...
buildFileCollectionDeps
58,172
Collection<ExternalDependency> (@Nullable String configurationName) { return resolveDependencies(configurationName, null); }
resolveDependencies
58,173
Collection<ExternalDependency> (@Nullable String configurationName, @Nullable String scope) { if (configurationName == null) return Collections.emptyList(); return resolveDependencies(myProject.getConfigurations().findByName(configurationName), scope).getExternalDeps(); }
resolveDependencies
58,174
Collection<ExternalDependency> (@Nullable Configuration configuration) { return resolveDependencies(configuration, null).getExternalDeps(); }
resolveDependencies
58,175
ExternalDepsResolutionResult (@Nullable Configuration configuration, @Nullable String scope) { if (configuration == null || configuration.getAllDependencies().isEmpty()) { return ExternalDepsResolutionResult.EMPTY; } final ExternalDepsResolutionResult result; if (!myIsPreview && isArtifactResolutionQuerySupported) { re...
resolveDependencies
58,176
Collection<ExternalDependency> (@NotNull SourceSet sourceSet) { Collection<ExternalDependency> result = new ArrayList<>(); // resolve compile dependencies CompileDependenciesProvider compileDependenciesProvider = new CompileDependenciesProvider(sourceSet, myProject).resolve(this); Collection<ExternalDependency> compile...
resolveDependencies
58,177
void (@NotNull SourceSet sourceSet, @NotNull Collection<ExternalDependency> result) { Multimap<Object, ExternalDependency> filesToDependenciesMap;// handle provided dependencies final Set<Configuration> providedConfigurations = new LinkedHashSet<>(); filesToDependenciesMap = ArrayListMultimap.create(); for (ExternalDep...
collectProvidedDependencies
58,178
boolean (Configuration cfg) { // filter default 'compileClasspath' for slight optimization since it has been already processed as compile dependencies return !cfg.getName().equals("compileClasspath") // since gradle 3.4 'idea' plugin PROVIDED scope.plus contains 'providedCompile' and 'providedRuntime' configurations //...
apply
58,179
void (Map<File, Integer> compileClasspathOrder, Map<File, Integer> runtimeClasspathOrder, ExternalDependency dependency) { String scope = dependency.getScope(); Map<File, Integer> classpathOrderMap = scope.equals(CompileDependenciesProvider.SCOPE) || scope.equals(PROVIDED_SCOPE) ? compileClasspathOrder : scope.equals(R...
updateDependencyOrder
58,180
Collection<ExternalDependency> (@NotNull final Set<File> files, @NotNull final Map<File, Integer> classPathOrder, @Nullable final String scope) { final List<ExternalDependency> result = new ArrayList<>(); if (files.isEmpty()) { return result; } final DefaultFileCollectionDependency fileCollectionDependency = new Defaul...
createFileCollectionDependencies
58,181
SourceSet (@Nullable final Project project, @NotNull final String name) { if (project == null) { return null; } SourceSetContainer sourceSets = JavaPluginUtil.getSourceSetContainer(project); return sourceSets == null ? null : sourceSets.findByName(name); }
findSourceSet
58,182
int (@Nullable Map<File, Integer> classpathOrderMap, @NotNull Collection<File> files) { int order = -1; for (File file : files) { if (classpathOrderMap != null) { Integer fileOrder = classpathOrderMap.get(file); if (fileOrder != null && (order == -1 || fileOrder < order)) { order = fileOrder; } if (order == 0) break; }...
getOrder
58,183
Set<File> (@NotNull SourceSet sourceSet, String... languages) { List<String> jvmLanguages = Lists.newArrayList(languages); final String sourceSetCompileTaskPrefix = sourceSet.getName().equals("main") ? "" : sourceSet.getName(); List<String> compileTaskNames = new ArrayList<>(jvmLanguages.size()); for (String language :...
getCompileClasspathFiles
58,184
Set<File> (@NotNull SourceSet sourceSet) { Set<File> result = new LinkedHashSet<>(); try { result.addAll(sourceSet.getRuntimeClasspath().getFiles()); } catch (Exception e) { // ignore } return result; }
getRuntimeClasspathFiles
58,185
void (@NotNull final CompileDependenciesProvider compileDependenciesProvider, @NotNull final RuntimeDependenciesProvider runtimeDependenciesProvider, @NotNull final AbstractExternalDependency dep) { Collection<File> resolvedFiles = getFiles(dep); boolean checkCompileOnlyDeps = compileDependenciesProvider.getCompileClas...
markAsProvidedIfNeeded
58,186
List<ExternalDependency> (Collection<ExternalDependency> result) { new DeduplicationVisitor().visit(result); return Lists.newArrayList(filter(result, isNotNull())); }
removeDuplicates
58,187
void (@NotNull Collection<ExternalDependency> dependencies) { for (Iterator<ExternalDependency> iter = dependencies.iterator(); iter.hasNext(); ) { ExternalDependency nextDependency = iter.next(); ExternalDependencyId nextId = nextDependency.getId(); ExternalDependency seenDependency = seenDependencies.get(nextId); Col...
visit
58,188
boolean (@NotNull ExternalDependency seenDependency, @NotNull ExternalDependency nextDependency) { Collection<File> seenFiles = getFiles(seenDependency); Collection<File> nextFiles = getFiles(nextDependency); boolean filesSeen = seenFiles.containsAll(nextFiles); boolean projectDependencySeen = compareAsProjectDependenc...
seenAllFiles
58,189
boolean (@NotNull ExternalDependency seenDependency, @NotNull ExternalDependency newDependency) { if (seenDependency instanceof ExternalProjectDependency && newDependency instanceof ExternalProjectDependency) { String seenConfiguration = ((ExternalProjectDependency)seenDependency).getConfigurationName(); String newConf...
compareAsProjectDependencies
58,190
void (@NotNull ExternalDependency targetDependency, @NotNull String newScope) { if (targetDependency.getScope().equals(COMPILE_SCOPE) || !(targetDependency instanceof AbstractExternalDependency)) { return; } final AbstractExternalDependency dep = ((AbstractExternalDependency)targetDependency); if (newScope.equals(COMPI...
upgradeScopeIfNeeded
58,191
Collection<ExternalDependency> ( @NotNull final SourceSet sourceSet, @NotNull final Map<File, Integer> classpathOrder, @Nullable final String scope) { @NotNull final Collection<ExternalDependency> result = new LinkedHashSet<>(); Set<File> runtimeOutputDirs = sourceSet.getOutput().getDirs().getFiles(); for (File dir : r...
collectSourceSetOutputDirsAsSingleEntryLibraries
58,192
ExternalLibraryDependency (Project project, File file, String scope) { File modules2Dir = new File(project.getGradle().getGradleUserHomeDir(), "caches/modules-2/files-2.1"); return resolveLibraryByPath(file, modules2Dir, scope); }
resolveLibraryByPath
58,193
ExternalLibraryDependency (File file, File modules2Dir, String scope) { File sourcesFile = null; try { String modules2Path = modules2Dir.getCanonicalPath(); String filePath = file.getCanonicalPath(); if (filePath.startsWith(modules2Path)) { List<File> parents = new ArrayList<>(); File parent = file.getParentFile(); whi...
resolveLibraryByPath
58,194
String (File file) { if (file == null) return "jar"; String path = file.getPath(); int index = path.lastIndexOf('.'); if (index < 0) return "jar"; return path.substring(index + 1); }
resolvePackagingType
58,195
String (String name, String version, File file) { String libraryFileName = getNameWithoutExtension(file); final String mavenLibraryFileName = name + "-" + version; if (!mavenLibraryFileName.equals(libraryFileName)) { Matcher matcher = Pattern.compile(name + "-" + version + "-(.*)").matcher(libraryFileName); if (matcher...
resolveClassifier
58,196
String (File file) { if (file == null) return null; String name = file.getName(); int i = name.lastIndexOf('.'); if (i != -1) { name = name.substring(0, i); } return name; }
getNameWithoutExtension
58,197
Set<ExternalDependency> (Collection<Dependency> dependencies, String scope) { Set<ExternalDependency> result = new LinkedHashSet<>(); for (Dependency dep : dependencies) { try { if (dep instanceof SelfResolvingDependency && !(dep instanceof ProjectDependency)) { Set<File> files = ((SelfResolvingDependency)dep).resolve(...
findAllFileDependencies
58,198
Set<ExternalDependency> (@NotNull final Configuration configuration, @NotNull final Collection<Dependency> dependencies, @Nullable final String scope) { Set<ExternalDependency> result = new LinkedHashSet<>(); Set<ResolvedArtifact> resolvedArtifacts = myIsPreview ? Collections.emptySet() : configuration.getResolvedConfi...
findDependencies
58,199
Configuration (ProjectDependency projectDependency) { try { return !is4OrBetter ? (Configuration)projectDependency.getClass().getMethod("getProjectConfiguration").invoke(projectDependency) : projectDependency.getDependencyProject().getConfigurations().findByName(projectDependency.getTargetConfiguration() != null ? proj...
getTargetConfiguration