Search Gradle plugins

com.gitlab.morality.remote-signing

A Gradle plugin which simplifies signing build artifacts using a remote key store.

https://gitlab.com/Morality/remote-signing

Sources: https://gitlab.com/Morality/remote-signing

Version 1.1.1.0

1.1.1.0

Created 18 November 2016.

A Gradle plugin which simplifies signing artifacts using a remote key store.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.gitlab.morality.remote-signing") version "1.1.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.gitlab.morality:remote-signing:1.1.1.0")
      }
    }
    
    apply(plugin = "com.gitlab.morality.remote-signing")
  • Applying plugins to all subprojects .