Search Gradle plugins

Version 0.4.2

Created 13 May 2018.

This plugin helps with developing for the JOSM project.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.openstreetmap.josm:gradle-josm-plugin:0.4.2")
  }
}

apply(plugin = "org.openstreetmap.josm")

Using the plugins DSL:

plugins {
  id "org.openstreetmap.josm" version "0.4.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.openstreetmap.josm:gradle-josm-plugin:0.4.2"
  }
}

apply plugin: "org.openstreetmap.josm"

Learn how to apply plugins to subprojects