Skip to content

Commit b54ac3f

Browse files
authored
Merge branch 'main' into renovate/com.google.protobuf-0.x
2 parents e97ee16 + fec3901 commit b54ac3f

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
cache: "gradle"
2525
- name: Validate Gradle wrapper
2626
# v4.4.1
27-
uses: gradle/actions/wrapper-validation@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2
27+
uses: gradle/actions/wrapper-validation@6a96db5a3f33ee3428706da0bfc3de5c5a8f698c
2828
- name: Build package
2929
run: ./gradlew build

build.gradle

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ plugins {
66
id "maven-publish"
77
}
88

9-
mainClassName = 'main.Main'
9+
application {
10+
mainClass = 'main.Main'
11+
}
1012

1113
group 'io.cloudquery'
1214
// x-release-please-start-version
@@ -20,11 +22,13 @@ repositories {
2022
mavenLocal()
2123
}
2224

23-
sourceCompatibility = 1.8
24-
targetCompatibility = 1.8
25+
java {
26+
sourceCompatibility = 1.8
27+
targetCompatibility = 1.8
28+
}
2529

26-
def grpcVersion = '1.75.0'
27-
def protobufVersion = '4.32.1'
30+
def grpcVersion = '1.76.0'
31+
def protobufVersion = '4.33.0'
2832
def protocVersion = protobufVersion
2933

3034
dependencies {

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)