Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 1.5 KB

File metadata and controls

29 lines (23 loc) · 1.5 KB

Build and Publish Sonarcloud status Code coverage Gradle Plugin Portal Version

bakdata gradle plugins

A collection of small Gradle plugins, mostly focused on deployment.

  • Sonar Some defaults for easy integration of sonar on multi-module projects
  • Sonatype is used for uploading to sonatype repos and ultimately publish to Maven Central
  • Release adds configurable push behavior for version bumping
  • Jib configures Jib repository, tag and image name
  • Mockito configures Mockito as a Java agent for tests

Development

Snapshot versions of these plugins are published to Sonatype. You can use them in your project by adding the following snippet to your settings.gradle.kts

pluginManagement {
    repositories {
        gradlePluginPortal()
        maven(url = "https://central.sonatype.com/repository/maven-snapshots")
    }
}