Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgraded Gradle to version 5.0 #221

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
12 changes: 4 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'ru.vyarus:gradle-animalsniffer-plugin:1.2.0'
classpath 'ru.vyarus:gradle-animalsniffer-plugin:1.4.4'
classpath "com.smokejumperit.gradle.license:Gradle-License-Report:0.0.2"
}
}
Expand All @@ -12,7 +12,7 @@ plugins {
id 'java'
id 'groovy'
id 'osgi'
id 'net.saliman.cobertura' version '2.4.0'
id 'net.saliman.cobertura' version '2.6.0'
id 'com.github.kt3k.coveralls' version '2.8.1'
id 'com.github.ben-manes.versions' version '0.14.0'
id 'com.jfrog.bintray' version '1.7.3'
Expand Down Expand Up @@ -70,7 +70,7 @@ configurations {
}

task intTest(type: Test) {
testClassesDir = sourceSets.intTest.output.classesDir
testClassesDirs = sourceSets.intTest.output.classesDirs
classpath = sourceSets.intTest.runtimeClasspath
}

Expand Down Expand Up @@ -215,8 +215,4 @@ task updateDocs {
}

afterReleaseBuild.dependsOn bintrayUpload
afterReleaseBuild.dependsOn updateDocs

task wrapper(type: Wrapper) {
gradleVersion = '3.3'
}
afterReleaseBuild.dependsOn updateDocs
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Feb 15 23:14:03 CET 2017
#Wed Mar 16 12:22:21 CET 2022
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.0-bin.zip
6 changes: 3 additions & 3 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ DEFAULT_JVM_OPTS=""
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"

warn ( ) {
warn () {
echo "$*"
}

die ( ) {
die () {
echo
echo "$*"
echo
Expand Down Expand Up @@ -155,7 +155,7 @@ if $cygwin ; then
fi

# Escape application args
save ( ) {
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
Expand Down