com.sinch.gradle.nexushelper
Owner: marwlo-sinch
A plugin simplifying the access to Nexus Maven repos
https://github.com/sinch/gradle-nexus-helper
Sources: https://github.com/sinch/gradle-nexus-helper.git
Version 0.1.0 (latest)
0.1.0
Created 14 November 2024.
A plugin simplifying the access to Nexus Maven repos
Using the plugins DSL:
plugins {
id("com.sinch.gradle.nexushelper") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.sinch.gradle:nexushelper:0.1.0")
}
}
apply(plugin = "com.sinch.gradle.nexushelper")
Using the plugins DSL:
plugins {
id "com.sinch.gradle.nexushelper" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.sinch.gradle:nexushelper:0.1.0"
}
}
apply plugin: "com.sinch.gradle.nexushelper"