Gradle plug-ins with opinionated defaults to allow streamlined, consistent operations
Information for how to contribute can be found in the contribution guidelines
The Flare Operations Plug-ins are distributed under the MIT License. There are no requirements for using it in your own project (a line in a NOTICES file is appreciated but not necessary for use)
The requirement for a copy of the license being included in distributions is fulfilled by a copy of the LICENSE file being included in constructed JAR archives
If you discover a security vulnerability, contact the development team by e-mail at [email protected]
For all current releases, the minimum required Gradle version is 5.0
When a major version is released, this is usually due to changes which are not backwards compatible. See the major version migration guide for information on adjustments which will be necesssary for your build to upgrade between major versions
The intended use for flare-plugins
involves selecting a set of conventions for common uses, implemented as a single plug-in. However, individual plug-ins can still be applied if none of the current pre-defined conventions meet your use case. Instructions for each individual plug-in can be found here.
Currently, the only pre-defined convention available is multi-module-library
The multi-module-library
convention is intended for gradle projects which define a set of related libraries as modules of a root project. This convention assumes that the root project is present mainly for overall build configuration, and that library code is all in sub-modules. This convention can be applied via the configuration documented in the Gradle Plugin Portal
Applying this convention has the following effects:
- Applies a task to the root project which will create a merged Jacoco XML report in
${rootProject.buildDir}/reports/jacoco/report.xml
- Add a reference to credentials read from environment variables
BINTRAY_USER
andBINTRAY_API_KEY
. These variables must be defined if the credentials are used, otherwise they default to blank- These credentials can be referenced by
${credentials.bintray.username}
and${credentials.bintray.password}
- These credentials can be referenced by
- Configures the
user
andkey
values of thebintray
extension from the configured credentials - Increases the logging level of test events in sub-modules
- Adds tasks to generate sources and javadoc jars, and adds them to the project's
archives
artifact configuration - Adds DSL for configuration project meta data
- Loads developers into project meta data from file
"${rootDir}/developers.properties"
, if it exists - Loads contributors into project meta data from file
"${rootDir}/contributors.properties"
, if it exists - Applies project meta data to generated Maven POM files
Individual plug-ins used to apply these behaviors:
- org.starchartlabs.flare.increased-test-logging
- org.starchartlabs.flare.managed-credentials
- org.starchartlabs.flare.bintray-credentials
- org.starchartlabs.flare.merge-coverage-reports
- org.starchartlabs.flare.source-jars
- org.starchartlabs.flare.metadata-base
- org.starchartlabs.flare.metadata-pom
StarChart Labs previously provided two libraries for Gradle plug-ins. Migration guides are provided for the following projects: