-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support Gradle 5 also migrate from ConventionTask to DefaultTask
- Loading branch information
Showing
10 changed files
with
132 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,9 @@ | ||
buildscript { | ||
repositories { | ||
jcenter() | ||
maven { | ||
url "https://dl.bintray.com/ullink/gradle-plugins" | ||
} | ||
} | ||
dependencies { | ||
classpath "nu.studer:gradle-plugindev-plugin:1.0.4.MULTI" | ||
classpath 'net.researchgate:gradle-release:2.4.0' | ||
} | ||
plugins { | ||
id 'nu.studer.plugindev' version '1.0.12' | ||
id 'net.researchgate.release' version '2.8.0' | ||
} | ||
|
||
apply plugin: 'groovy' | ||
apply plugin: 'nu.studer.plugindev' | ||
apply plugin: 'net.researchgate.release' | ||
|
||
dependencies { | ||
compile 'commons-io:commons-io:1.3.2' | ||
|
@@ -23,9 +14,7 @@ dependencies { | |
group = 'com.ullink.gradle' | ||
description 'gradle-opencover-plugin is a Gradle plugin for getting code coverage using OpenCover' | ||
|
||
|
||
bintray { | ||
// to remove when upgraded plugindev to 1.0.4 | ||
user project.properties.bintrayUser | ||
key project.properties.bintrayApiKey | ||
pkg.repo = 'gradle-plugins' | ||
|
@@ -43,17 +32,10 @@ plugindev { | |
authorEmail '[email protected]' | ||
projectUrl "https://github.com/Ullink/${project.name}" | ||
projectInceptionYear '2015' | ||
|
||
pluginImplementation { | ||
pluginId 'com.ullink.opencover' | ||
pluginImplementationClass 'com.ullink.gradle.opencover.OpenCoverPlugin' | ||
} | ||
pluginImplementation { | ||
pluginId = 'com.ullink.opencover-nunit' | ||
pluginImplementationClass 'com.ullink.gradle.opencover.OpenCoverNUnitPlugin' | ||
} | ||
pluginId = 'com.ullink.opencover-nunit' | ||
pluginImplementationClass 'com.ullink.gradle.opencover.OpenCoverNUnitPlugin' | ||
|
||
done() | ||
} | ||
|
||
project.tasks.afterReleaseBuild.dependsOn project.tasks.bintrayUpload | ||
afterReleaseBuild.dependsOn project.tasks.bintrayUpload |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
version = 1.11-SNAPSHOT | ||
version = 1.11 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#Fri Jan 02 22:28:22 CET 2015 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.9-all.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.