Skip to content

Commit 6201b38

Browse files
author
Denis Zhdanov
committed
* upgraded dependencies to the latest versions
* configured CI
1 parent b5b30ad commit 6201b38

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

.github/workflows/release.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Java CI with Gradle
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
7+
jobs:
8+
build:
9+
uses: harmonysoft-tech/ci/.github/workflows/gradle-plugin.yml@main
10+
secrets: inherit
11+
permissions:
12+
contents: write

build.gradle.kts

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
plugins {
2-
kotlin("jvm") version "1.9.10"
2+
`java-gradle-plugin`
3+
kotlin("jvm") version "1.9.23"
34
id("com.gradle.plugin-publish") version "1.2.1"
4-
id("tech.harmonysoft.oss.gradle.release.paperwork") version "1.7.0"
5+
id("tech.harmonysoft.oss.gradle.release.paperwork") version "1.10.0"
56
}
67

78
group = "tech.harmonysoft"
@@ -30,10 +31,8 @@ repositories {
3031
}
3132

3233
dependencies {
33-
api(gradleApi())
34-
testImplementation(gradleTestKit())
35-
testImplementation("org.junit.jupiter:junit-jupiter:5.10.0")
36-
testImplementation("org.assertj:assertj-core:3.24.2")
34+
testImplementation("org.junit.jupiter:junit-jupiter:5.10.2")
35+
testImplementation("org.assertj:assertj-core:3.25.3")
3736
testImplementation("tech.harmonysoft:harmonysoft-common-test:1.92.0")
3837
}
3938

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)