Skip to content

Commit

Permalink
Merge pull request #4 from Liftric/feat/upgrade_gradle_dependencies
Browse files Browse the repository at this point in the history
feat(build): upgrade gradle and plugins
  • Loading branch information
Ingwersaft committed Dec 14, 2021
2 parents 0bdb90c + 5c01b2c commit 5ea1aea
Show file tree
Hide file tree
Showing 14 changed files with 334 additions and 251 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ plugins {
`kotlin-dsl`
}
repositories {
jcenter()
gradlePluginPortal()
}
dependencies {
implementation("com.liftric.vault:vault-client-plugin:<latest>")
Expand Down
7 changes: 3 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import net.nemerosa.versioning.tasks.VersionDisplayTask
plugins {
`kotlin-dsl`
`maven-publish`
id("com.gradle.plugin-publish") version "0.11.0"
id("net.nemerosa.versioning") version "2.12.0"
id("com.gradle.plugin-publish") version "0.18.0"
id("net.nemerosa.versioning") version "2.15.1"
}

group = "com.liftric.vault"
Expand All @@ -20,7 +20,6 @@ allprojects {

repositories {
mavenCentral()
jcenter()
}

dependencies {
Expand All @@ -29,7 +28,7 @@ dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("com.bettercloud:vault-java-driver:5.1.0")
testImplementation(gradleTestKit())
testImplementation("junit:junit:4.12")
testImplementation("junit:junit:4.13.2")
testImplementation("com.github.stefanbirkner:system-rules:1.19.0")
}

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-6.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
3 changes: 3 additions & 0 deletions gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%

@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi

@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"

Expand Down
3 changes: 2 additions & 1 deletion integration-token/buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ plugins {
`kotlin-dsl`
}
repositories {
jcenter()
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
dependencies {
val vaultClientPluginVersion = file("../../build/version").readText().trim()
Expand Down
Binary file modified integration-token/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion integration-token/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-6.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 5ea1aea

Please sign in to comment.