Skip to content

Commit

Permalink
Add support for signing binaries
Browse files Browse the repository at this point in the history
Resolves wpilibsuite#65

Just applies the idea plugin like we do in allwpilib
  • Loading branch information
spacey-sooty committed Oct 1, 2024
1 parent d08557a commit e68a25d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ plugins {
id 'maven-publish'
id 'groovy'
id 'java'
id 'idea'
}

java {
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/edu/wpi/first/nativeutils/WPINativeUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@

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);
project.getPluginManager().apply(IdeaPlugin.class);

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

Expand Down

0 comments on commit e68a25d

Please sign in to comment.