Skip to content
This repository has been archived by the owner on Aug 22, 2018. It is now read-only.

Commit

Permalink
Actually upgrade ospackage to 3.x (specifically 3.1.0 including custo…
Browse files Browse the repository at this point in the history
…m field support for debs)
  • Loading branch information
DanielThomas committed Sep 21, 2015
1 parent aab586f commit 938b977
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,8 @@
3.1.0 - 2015/09/21
==================

* Actually upgrade ospackage to 3.x (specifically 3.1.0 including custom field support for debs)

3.0.0 - 2015/09/17
==================

Expand Down
12 changes: 9 additions & 3 deletions build.gradle
Expand Up @@ -36,13 +36,19 @@ description 'Opinionated plugins that wrap the gradle-ospackage-plugin'

apply from: 'https://raw.githubusercontent.com/nebula-plugins/nebula-core/596569bf3e7bd32da076784a8273dbd145bc016f/common.gradle'

ext {
versions = [:]
}

versions.ospackage = '3.1.0'

dependencies {
compile 'com.netflix.nebula:gradle-ospackage-plugin:2.2.+'
compile "com.netflix.nebula:gradle-ospackage-plugin:${versions.ospackage}"
// We have to ask for the test configuration and the tests jar separately when calling a POM dependency
testCompile(group: 'com.netflix.nebula', name: 'gradle-ospackage-plugin', version: '2.2.+', configuration: 'test') {
testCompile(group: 'com.netflix.nebula', name: 'gradle-ospackage-plugin', version: versions.ospackage, configuration: 'test') {
exclude group: 'com.netflix.nebula', module: 'nebula-test'
}
testCompile 'com.netflix.nebula:gradle-ospackage-plugin:2.2.+:tests'
testCompile "com.netflix.nebula:gradle-ospackage-plugin:${versions.ospackage}:tests"
}

contacts {
Expand Down

0 comments on commit 938b977

Please sign in to comment.