HELP: How to get the classpath of the current project?
In my plugin I need to find a special class in the output folder/class directory.
Does anybody knows how to get the classpath of the current project?
summerly Greetz
Thilo
Please sign in to leave a comment.
I found it out:
Project project = (Project) event.getDataContext().getData(DataConstants.PROJECT);
ProjectRootManager projectManager = ProjectRootManager.getInstance(project);
projectManager.getFullClassPath();