com.github.elect86.sciJava
Owner: Giuseppe Barbieri
plugin to easier version alignment for sciJava in Gradle
https://github.com/elect86/sciJava/tree/master
Sources: https://github.com/elect86/sciJava.git
Version 0.0.4 (latest)
0.0.4
Created 01 February 2021.
plugin to easier version alignment for sciJava in Gradle
Using the plugins DSL:
plugins {
id("com.github.elect86.sciJava") version "0.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.elect86:sciJava:0.0.4")
}
}
apply(plugin = "com.github.elect86.sciJava")
Using the plugins DSL:
plugins {
id "com.github.elect86.sciJava" version "0.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.elect86:sciJava:0.0.4"
}
}
apply plugin: "com.github.elect86.sciJava"