Last active
August 19, 2024 16:08
-
-
Save gerin98/4782617bd7fb9490e8fdc7c78e7e2739 to your computer and use it in GitHub Desktop.
[Blogpost] Registering a Gradle Plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gradlePlugin { | |
plugins { | |
create("FilterUnitTests") { | |
id = "com.wf.filterUnitTests" | |
implementationClass = "com.wf.FilterUnitTestsPlugin" | |
version = "1.0.0" | |
} | |
} | |
} | |
dependencies { | |
implementation 'org.eclipse.jgit:org.eclipse.jgit:version' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment