@auto-canary/gradle

9.9.1-canary.928.12149.0 • Public • Published

Gradle Plugin

Release a Java project using gradle.

Installation

This plugin is not included with the auto CLI installed via NPM. To install:

npm i --save-dev @auto-it/gradle
# or
yarn add -D @auto-it/gradle

Usage

{
  "plugins": [
    [
      "gradle", {
        // An optional gradle binary cmd/path relative to your project
        // @default /usr/bin/gradle
        "gradleCommand": "./gradlew",

        // An optional properties file where the gradle release plugin will read/write versions from.to.
        // @default ./gradle.properties
        "versionFile": "./gradle.properties",

        // An optional gradle argument list -- IE any gradle option allowed for the version
        // of gradle you're using
        // @default []
        "gradleOptions": ["-P someProp=someVal"]
      }
    ]
    // other plugins
  ]
}

Gradle Project Configuration

Your project must be using the gradle release plugin. Make sure the the latest gradle-release-plugin is in your build.gradle.

import java.util.regex.Matcher

plugins {
  id "org.sonarqube" version "2.7.1"
  id 'net.researchgate.release' version '2.6.0' // gradle release plugin
}

task build {}
build.dependsOn('app:build')
build.dependsOn('app:assembleRelease')

release {
    failOnCommitNeeded = false
    buildTasks = ['build']
    versionPatterns = [
        /(\d+)([^\d]*$)/: { Matcher m, Project p -> m.replaceAll("${(m[0][1] as int) + 1}${m[0][2]}")}
    ]
....

You will also need all of the following configuration blocks for all parts of auto to function:

  1. Version defined inside versionFile
version=1.0.0

Package Sidebar

Install

npm i @auto-canary/gradle

Weekly Downloads

2

Version

9.9.1-canary.928.12149.0

License

none

Unpacked Size

4.34 kB

Total Files

4

Last publish

Collaborators

  • alisowski
  • hipstersmoothie-canary