We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d08557a commit e68a25dCopy full SHA for e68a25d
build.gradle
@@ -4,6 +4,7 @@ plugins {
4
id 'maven-publish'
5
id 'groovy'
6
id 'java'
7
+ id 'idea'
8
}
9
10
java {
src/main/java/edu/wpi/first/nativeutils/WPINativeUtils.java
@@ -2,11 +2,13 @@
2
3
import org.gradle.api.Plugin;
import org.gradle.api.Project;
+import org.gradle.plugins.ide.idea.IdeaPlugin;
public class WPINativeUtils implements Plugin<Project> {
@Override
public void apply(Project project) {
project.getPluginManager().apply(NativeUtils.class);
11
+ project.getPluginManager().apply(IdeaPlugin.class);
12
13
NativeUtilsExtension nativeExt = project.getExtensions().getByType(NativeUtilsExtension.class);
14
0 commit comments