Move release plugin to new plugin dsl

This commit is contained in:
Michael Bull 2018-02-28 01:47:00 +00:00
parent 184b5f6dd8
commit 2db3e0e3cf
2 changed files with 1 additions and 3 deletions

View File

@ -7,17 +7,16 @@ buildscript {
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokkaVersion"
classpath "net.researchgate:gradle-release:$gradleReleaseVersion"
}
}
plugins {
id 'com.github.ben-manes.versions' version '0.17.0'
id 'net.researchgate.release' version '2.6.0'
}
apply plugin: 'kotlin-platform-common'
apply plugin: 'maven-publish'
apply plugin: 'net.researchgate.release'
apply plugin: 'org.jetbrains.dokka'
description = 'A Result monad for modelling success or failure operations.'

View File

@ -2,7 +2,6 @@ group=com.github.michaelbull.kotlin-result
version=1.0.9-SNAPSHOT
dokkaVersion=0.9.14
gradleReleaseVersion=2.6.0
hamkrestVersion=1.4.2.0
junitVersion=4.12
kotlinVersion=1.2.21