Skip to content

Commit e68a25d

Browse files
committed
Add support for signing binaries
Resolves #65 Just applies the idea plugin like we do in allwpilib
1 parent d08557a commit e68a25d

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ plugins {
44
id 'maven-publish'
55
id 'groovy'
66
id 'java'
7+
id 'idea'
78
}
89

910
java {

src/main/java/edu/wpi/first/nativeutils/WPINativeUtils.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22

33
import org.gradle.api.Plugin;
44
import org.gradle.api.Project;
5+
import org.gradle.plugins.ide.idea.IdeaPlugin;
56

67
public class WPINativeUtils implements Plugin<Project> {
78
@Override
89
public void apply(Project project) {
910
project.getPluginManager().apply(NativeUtils.class);
11+
project.getPluginManager().apply(IdeaPlugin.class);
1012

1113
NativeUtilsExtension nativeExt = project.getExtensions().getByType(NativeUtilsExtension.class);
1214

0 commit comments

Comments
 (0)