Skip to content

Feature/updates #103

Merged
merged 9 commits into from
Oct 1, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 9 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ buildscript {
}

dependencies {
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.4.9"
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.1'
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.7.2"
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.2'
classpath 'nl.javadude.gradle.plugins:license-gradle-plugin:0.10.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'

classpath 'com.netflix.nebula:nebula-release-plugin:4.1.0'
classpath 'com.netflix.nebula:gradle-info-plugin:3.2.1'
classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:3.3.0'
classpath 'com.netflix.nebula:nebula-publishing-plugin:4.9.1'
classpath 'com.netflix.nebula:nebula-release-plugin:8.0.1'
classpath 'com.netflix.nebula:gradle-info-plugin:4.0.2'
classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:4.0.1'
classpath 'com.netflix.nebula:nebula-publishing-plugin:9.0.2'
}
}

Expand Down Expand Up @@ -65,7 +65,7 @@ dependencies {
compile group: 'io.cucumber', name: 'cucumber-java', version: cucumberVersion
compile group: 'io.cucumber', name: 'cucumber-core', version: cucumberVersion
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.21'
compile group: 'org.projectlombok', name: 'lombok', version: '1.16.10'
compile group: 'org.projectlombok', name: 'lombok', version: '1.18.2'
compile group: 'io.rest-assured', name: 'rest-assured', version: '3.0.2'
compile group: 'com.google.inject', name: 'guice', version: '4.1.0'
compile group: 'com.galenframework', name: 'galen-java-support', version: '2.3.6'
Expand Down Expand Up @@ -139,7 +139,6 @@ bintrayUpload.onlyIf {
!project.version.toString().toUpperCase().endsWith("-SNAPSHOT") && !project.version.toString().toUpperCase().contains("-DEV")
}


jacocoTestReport {
reports {
xml.enabled true
Expand All @@ -150,6 +149,6 @@ jacocoTestReport {

license {
header rootProject.file('HEADER')
exclude ("body.json")
exclude("body.json")
strictCheck false
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-bin.zip
3 changes: 2 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
rootProject.name = 'akita'
rootProject.name = 'akita'
enableFeaturePreview('STABLE_PUBLISHING')