Skip to content

Commit

Permalink
Update dependencies; upgrade to Gradle 4.10
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmiray committed Aug 28, 2018
1 parent 1f33e76 commit f85b8e9
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 44 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ before_script:
script: ./gradlew clean build
jdk:
- oraclejdk8
# - oraclejdk9
env: TERM=dumb
# after_success:
#  - ./gradlew coveralls
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ buildscript {
dependencies {
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.2'
classpath 'nl.javadude.gradle.plugins:license-gradle-plugin:0.11.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'org.ajoberstar:gradle-git:1.7.2'
classpath 'org.kordamp.gradle:stats-gradle-plugin:0.2.2'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
classpath 'net.nemerosa:versioning:2.6.1'
classpath 'org.kordamp.gradle:jdeps-gradle-plugin:0.2.0'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.20.0'
classpath 'net.nemerosa:versioning:2.7.1'
classpath 'org.kordamp.gradle:jdeps-gradle-plugin:0.3.0'
classpath 'gradle.plugin.net.ossindex:ossindex-gradle-plugin:0.1.1'
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=0.2.3
version=0.2.4-SNAPSHOT
group=org.kordamp.bootstrapfx
sourceCompatibility=1.8
targetCompatibility=1.8
Expand Down
61 changes: 27 additions & 34 deletions gradle/publishing.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,47 +45,40 @@ jar {
}
}

def pomConfig = {
packaging 'jar'
name project.name
description project.project_description
url project.project_url
inceptionYear '2015'
licenses {
license([:]) {
name 'MIT License'
url 'http://opensource.org/licenses/MIT'
distribution 'repo'
}
}
scm {
url project.project_scm
}
developers {
[
aalmiray : 'Andres Almiray'
].each { devId, devName ->
developer {
id devId
name devName
roles {
role 'Developer'
}
}
}
}
}

publishing {
publications {
mavenCustom(MavenPublication) {
from components.java
artifact sourcesJar
artifact javadocJar

pom.withXml {
asNode().children().last() + pomConfig
asNode().appendNode('description', project.project_description)
pom {
name = project.name
description = project.project_description
url = project.project_url
packaging = 'jar'
inceptionYear = '2015'
licenses {
license {
name = 'MIT License'
url = 'http://opensource.org/licenses/MIT'
distribution = 'repo'
}
}
scm {
url = project.project_scm
}
developers {
[
aalmiray : 'Andres Almiray'
].each { devId, devName ->
developer {
id = devId
name = devName
roles = ['Developer']
}
}
}
}
}
}
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions subprojects/bootstrapfx-core/bootstrapfx-core.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ buildscript {
}

dependencies {
classpath 'gradle.plugin.com.github.jengelman.gradle.plugins:gradle-processes:0.4.1'
classpath 'gradle.plugin.com.github.jengelman.gradle.plugins:gradle-processes:0.5.0'
classpath 'com.github.robfletcher:compass-gradle-plugin:2.0.6'
}
}
Expand All @@ -48,7 +48,7 @@ task sourcesJar(type: Jar) {
dependencies {
// upgraded dependencies for compass-gradle
jrubyExec 'org.bouncycastle:bcprov-jdk15on:1.59'
jrubyExec 'org.jruby:jruby-complete:9.1.16.0'
jrubyExec 'org.jruby:jruby-complete:9.2.0.0'
}

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

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

0 comments on commit f85b8e9

Please sign in to comment.