Skip to content

Commit

Permalink
Update the plugin jar generation
Browse files Browse the repository at this point in the history
  • Loading branch information
timotei committed May 26, 2021
1 parent 8e982db commit 4a1e153
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# gradle-opencover-plugin changelog

## 1.15
### Fixed
* The plugins.gradle.org jar now contains both opencover and opencover-nunit plugins

## 1.14
### Changed
* Default OpenCover version is now 4.7.1189
Expand Down
11 changes: 9 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,19 @@ pluginBundle {

gradlePlugin {
plugins {
opencoverPlugin {
opencoverNunitPlugin {
id = 'com.ullink.opencover-nunit'
description = project.description
displayName = 'Gradle Opencover Plugin'
displayName = 'Gradle Opencover NUnit Plugin'
implementationClass = 'com.ullink.gradle.opencover.OpenCoverNUnitPlugin'
}

opencoverPlugin {
id = 'com.ullink.opencover'
description = project.description
displayName = 'Gradle Opencover Plugin'
implementationClass = 'com.ullink.gradle.opencover.OpenCoverPlugin'
}
}
}

Expand Down

0 comments on commit 4a1e153

Please sign in to comment.