Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carrotsearch/gradle-opts-plugin
gradle-opts-plugin
https://github.com/carrotsearch/gradle-opts-plugin
Last synced: 29 days ago
JSON representation
gradle-opts-plugin
- Host: GitHub
- URL: https://github.com/carrotsearch/gradle-opts-plugin
- Owner: carrotsearch
- License: apache-2.0
- Created: 2020-12-18T10:33:09.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-12T13:14:50.000Z (almost 4 years ago)
- Last Synced: 2024-03-26T01:08:03.065Z (10 months ago)
- Language: Groovy
- Size: 81.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Gradle Opts Plugin
This simple plugin adds an extension
opts
with several
utility functions for accessing configurable project "options". These
options are keyed properties with defaults sourced from project properties,
system properties or environment variables.## Usage
You can add it to your top-level build script using the following configuration:
### `plugins` block:
```groovy
plugins {
id "com.carrotsearch.gradle.opts" version "$version"
}
```