eu.superbob.uberjava
Owner: Florian Morgan
Merge multiple Java sources files into a single one
https://github.com/superbob/uber-java
Sources: https://github.com/superbob/uber-java
Version 1.0.0 (latest)
1.0.0
Created 21 July 2019.
Merge multiple Java sources files into a single one
Using the plugins DSL:
plugins {
id("eu.superbob.uberjava") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.eu.superbob.uberjava:uber-java:1.0.0")
}
}
apply(plugin = "eu.superbob.uberjava")
Using the plugins DSL:
plugins {
id "eu.superbob.uberjava" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.eu.superbob.uberjava:uber-java:1.0.0"
}
}
apply plugin: "eu.superbob.uberjava"