Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 895 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 895 Bytes

Common-Gradle

License: MIT Build Dependabot

A common Gradle buildscript for my projects.

ext {
	commonGradleBranch = "master"
	javaVersion = 11
	useSpotBugs = false
	testing = true //true by default
	defaultCompileDependencies = false //Guava and SLF4J.
	autoUpdateLicenses = false
	mainClass = "com.test.Main"
	jacocoMinimumInstructionCoverage = 0.1
	jacocoExcludes = ["com.test.*"]
	registerDefaultMavenPublication = false
}

group = "com.test"
version = "1.0.0"

apply from: "https://raw.github.com/TheRandomLabs/Common-Gradle/${project.commonGradleBranch}/build.gradle"