io.github.pacificengine.build.repository
Owner: Joseph Salomone
A plugin that helps you retrieve from different maven repositories
https://pacificengine.github.io/build/repository/
Sources: https://github.com/PacificEngine/build
Version 0.0.2 (latest)
0.0.2
Created 13 January 2024.
A plugin that helps you retrieve from different maven repositories
Using the plugins DSL:
plugins {
id("io.github.pacificengine.build.repository") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.pacificengine.build:repository:0.0.2")
}
}
apply(plugin = "io.github.pacificengine.build.repository")
Using the plugins DSL:
plugins {
id "io.github.pacificengine.build.repository" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.pacificengine.build:repository:0.0.2"
}
}
apply plugin: "io.github.pacificengine.build.repository"