return null;
}
@Nullable
public static ArtifactTypeSettings.DependencyCategory determineCategory(@NotNull Project project, @NotNull Artifact artifact) {
final ArtifactTypeSettings typeSettings = IvyIdeaConfigHelper.getArtifactTypeSettings(project);
if (typeSettings == null) {
return null;
}
return typeSettings.getCategoryForType(artifact.getType());
}