Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/therandomlabs/common-gradle
A common Gradle buildscript for my projects.
https://github.com/therandomlabs/common-gradle
buildscript gradle java
Last synced: 2 days ago
JSON representation
A common Gradle buildscript for my projects.
- Host: GitHub
- URL: https://github.com/therandomlabs/common-gradle
- Owner: TheRandomLabs
- License: mit
- Created: 2020-01-03T07:30:52.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-03T05:45:28.000Z (over 3 years ago)
- Last Synced: 2023-03-01T22:10:39.481Z (over 1 year ago)
- Topics: buildscript, gradle, java
- Size: 277 KB
- Stars: 1
- Watchers: 1
- Forks: 6
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Common-Gradle
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
![Build](https://github.com/TheRandomLabs/Common-Gradle/workflows/Build/badge.svg?branch=master)
[![Dependabot](https://badgen.net/dependabot/TheRandomLabs/Common-Gradle/?icon=dependabot)](https://dependabot.com/)A common Gradle buildscript for my projects.
```groovy
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.githubusercontent.com/TheRandomLabs/Common-Gradle/${project.commonGradleBranch}/build.gradle"
```