Skip to content

Instantly share code, notes, and snippets.

@gerin98
Last active August 19, 2024 16:08
Show Gist options
  • Save gerin98/4782617bd7fb9490e8fdc7c78e7e2739 to your computer and use it in GitHub Desktop.
Save gerin98/4782617bd7fb9490e8fdc7c78e7e2739 to your computer and use it in GitHub Desktop.
[Blogpost] Registering a Gradle Plugin
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