Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmiray committed Mar 28, 2018
1 parent 53ee987 commit 44db168
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions build.gradle
Expand Up @@ -76,6 +76,19 @@ allprojects {
jdeps {
failOnError = false
}

dependencyUpdates.resolutionStrategy = {
componentSelection { rules ->
rules.all { selection ->
boolean rejected = ['alpha', 'beta', 'rc', 'cr', 'm'].any { qualifier ->
selection.candidate.version ==~ /(?i).*[.-]${qualifier}[.\d-]*/
}
if (rejected) {
selection.reject('Release candidate')
}
}
}
}
}

subprojects { subproj ->
Expand Down
4 changes: 2 additions & 2 deletions subprojects/bootstrapfx-core/bootstrapfx-core.gradle
Expand Up @@ -47,8 +47,8 @@ task sourcesJar(type: Jar) {

dependencies {
// upgraded dependencies for compass-gradle
jrubyExec 'org.bouncycastle:bcprov-jdk15on:1.58'
jrubyExec 'org.jruby:jruby-complete:9.1.15.0'
jrubyExec 'org.bouncycastle:bcprov-jdk15on:1.59'
jrubyExec 'org.jruby:jruby-complete:9.1.16.0'
}

javadoc {
Expand Down
2 changes: 1 addition & 1 deletion subprojects/sampler/sampler.gradle
Expand Up @@ -26,5 +26,5 @@ mainClassName = 'org.kordamp.bootstrapfx.Sampler'

dependencies {
compile project(':bootstrapfx-core')
compile 'org.fxmisc.richtext:richtextfx:0.8.1'
compile 'org.fxmisc.richtext:richtextfx:0.8.2'
}

0 comments on commit 44db168

Please sign in to comment.