Search Gradle plugins

Version 0.2.0

0.2.0

Created 04 December 2017.

This plugin helps with developing for the JOSM project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.openstreetmap.josm") version "0.2.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.openstreetmap.josm:gradle-josm-plugin:0.2.0")
      }
    }
    
    apply(plugin = "org.openstreetmap.josm")
  • Applying plugins to all subprojects .