I am developing an IntelliJ IDEA Plugin that has an example.jar library as a dependency.
// build.gradle.kts
dependencies {
implementation(files("src/main/resources/example.jar"))
}
So, I has built the plugin, started IDEA and created a new project. Can I import my example.jar library in this new project?
import myPlugin.example // something like that
Is it possible to import the internal dependency of a plugin in a new IDEA project?
Or how to add the necessary dependency when installing the plugin?
New contributor
Student is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.