Skip to content

Commit

Permalink
update to gradle 7
Browse files Browse the repository at this point in the history
  • Loading branch information
kermitt2 committed Apr 11, 2022
1 parent 4363777 commit 220fa10
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
20 changes: 14 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,31 @@ buildscript {
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven { url "https://plugins.gradle.org/m2/" }
maven {
url 'https://plugins.gradle.org/m2/'
}
// maven { url "https://dl.bintray.com/rookies/maven" }
// maven { url "http://oss.jfrog.org/artifactory/libs-snapshot" }
// maven { url "http://oss.jfrog.org/artifactory/libs-release" }
// maven { url "https://dl.bintray.com/rookies/maven" }
}
dependencies {
// classpath group: 'net.researchgate', name: 'gradle-release', version: '2.6.0'
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.4.0'
// classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.4.0'
// classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath "gradle.plugin.org.gretty:gretty:2.3.1"
//classpath "gradle.plugin.org.gretty:gretty:3.0.7"
//classpath 'org.gretty:gretty:+'
//classpath "org.gretty:gretty:4.0.1"
//classpath "gradle.plugin.org.gretty:gretty:3.0.4"
classpath 'com.github.jengelman.gradle.plugins:shadow:5.0.0'
}
}

apply plugin: 'maven'
plugins {
id("org.gretty") version "3.0.4"
}

//apply plugin: 'maven'
//apply plugin: 'com.jfrog.bintray'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java'
Expand Down Expand Up @@ -187,7 +195,7 @@ artifacts {
//}

wrapper {
gradleVersion "5.4.1"
gradleVersion "7.1.1"
}

// return the default value if the property has not been specified in command line
Expand Down
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-5.4.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-all.zip

0 comments on commit 220fa10

Please sign in to comment.