Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove v1 idea-plugin goal #10115

Merged
merged 1 commit into from
Jun 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/python/pants/backend/project_info/register.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@
from pants.backend.project_info.tasks.depmap import Depmap
from pants.backend.project_info.tasks.export import Export
from pants.backend.project_info.tasks.filedeps import FileDeps
from pants.backend.project_info.tasks.idea_plugin_gen import IdeaPluginGen
from pants.goal.task_registrar import TaskRegistrar as task


def register_goals():
task(name="idea-plugin", action=IdeaPluginGen).install()
task(name="export", action=Export).install()
task(name="depmap", action=Depmap).install()
task(name="dependencies", action=Dependencies).install()
Expand Down
24 changes: 0 additions & 24 deletions src/python/pants/backend/project_info/tasks/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ target(
':export',
':export_dep_as_jar',
':filedeps',
':idea_plugin_gen',
],
)

Expand Down Expand Up @@ -105,26 +104,3 @@ python_library(
],
tags = {"partially_type_checked"},
)

python_library(
name = 'idea_plugin_gen',
sources = ['idea_plugin_gen.py'],
dependencies = [
':idea_resources',
'src/python/pants/backend/jvm/targets:jvm',
'src/python/pants/backend/python/targets',
'src/python/pants/base:build_environment',
'src/python/pants/base:exceptions',
'src/python/pants/base:generator',
'src/python/pants/task',
'src/python/pants/util:contextutil',
'src/python/pants/util:desktop',
'src/python/pants/util:dirutil',
],
tags = {'partially_type_checked'},
)

resources(
name = 'idea_resources',
sources = ['templates/idea/*.mustache'],
)
253 changes: 0 additions & 253 deletions src/python/pants/backend/project_info/tasks/idea_plugin_gen.py

This file was deleted.