Reputation: 2739
This must be a painfully simple question but I am new to IntelliJ. I am running 14.1 community, and created a new plugin project.
This asked me to set the SDK, which is install of IntelliJ. No problem, I pointed it at the IDEA directory.
I grabbed some example source for creating a task repository from github.
When I try to import any of the actual classes in the Task jar, I get no classdef errors all over.
It shows that it knows about com.intellij.tasks
but all of the classes are missing.
What rookie mistake have I made?
Upvotes: 1
Views: 322
Reputation: 3828
In order to use com.intellij.tasks.*
classes in plugin project, I've added plugins/tasks/lib/tasks-*.jar
jars from IDEA installation to the classpath of SDK used to build plugin project.
Upvotes: 3