Skip to content

Releases: upmc-enterprises/gradle-slack-uploader-plugin

2.1.0

03 Oct 19:07
2.1.0
45e4749
Compare
Choose a tag to compare

Supported Kotlin Versions Supported Gradle Versions Gradle Plugin Portal Release 2.1.0 JitPack Release 2.1.0

This minor update addresses an issue with an underlying plugin which caused uploads to Slack during a build to fail with a timeout exception.

2.0.0

02 Oct 16:24
2.0.0
3836e94
Compare
Choose a tag to compare

Supported Kotlin Versions Supported Gradle Versions Gradle Plugin Portal Release 2.0.0 JitPack Release 2.0.0

All of the libraries which power this project have been upgraded, incidentally fixing an issue with a library compatibility issue with the new Slack file upload API.

Note: The plugin identifier has changed. Instead of com.oliverspryn.gradleslackuploaderplugin, the ID is now com.oliverspryn.gradle.slackuploader.

Please use the new identifier, as shown below:

plugins {
    id 'com.oliverspryn.gradle.slackuploader' version '<latest version>'
}

Or for the legacy plugin format:

buildscript {
    repositories {
        maven { url "https://plugins.gradle.org/m2/" }
    }

    dependencies {
        classpath "gradle.plugin.com.oliverspryn.gradle:slack-uploader:<latest-version>"
    }
}

apply plugin: "com.oliverspryn.gradle.slackuploader"

The old identifier will continue to function, but will not receive any updates past 1.0.1.

1.0.1

02 May 16:06
1.0.1
cfb5d9e
Compare
Choose a tag to compare

Supported Kotlin Versions Supported Gradle Versions Gradle Plugin Portal Release 1.0.1 JitPack Release 1.0.1

It is now even easier to start using this plugin starting with version 1.0.1. Since this plugin is now available on the Gradle Plugin Repository, to load it into your Gradle script, just use this syntax:

plugins {
    id 'com.oliverspryn.gradleslackuploaderplugin' version '<latest version>'
}

1.0.0

29 Mar 16:59
1.0.0
4902dbf
Compare
Choose a tag to compare

Supported Kotlin Versions Supported Gradle Versions Release 1.0.0

Introducing the Gradle Slack Uploader Plugin. You can now integrate Slack with your Gradle builds more tightly than ever. With this release you can:

  • Upload a single file to one or more Slack channels
  • Customize the comment posted with the file attachment
  • Conditionally enable or disable the plugin based on a configuration flag