Skip to content

Commit

Permalink
Updated to java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
scottslewis committed Jan 26, 2024
1 parent 3ce8f94 commit 82e7e71
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 14
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '14'
java-version: '17'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
Expand All @@ -32,10 +32,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 14
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '14'
java-version: '17'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
Expand All @@ -48,10 +48,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 14
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '14'
java-version: '17'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
bnd_version=5.3.0
bnd_version=7.0.0

bnd_repourl=https://oss.sonatype.org/content/repositories/snapshots
2 changes: 1 addition & 1 deletion org.eclipse.ecf.provider.etcd3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>

<artifactId>org.eclipse.ecf.provider.etcd3</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>
<dependencies>
<dependency>
<groupId>com.google.protobuf</groupId>
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath "biz.aQute.bnd:biz.aQute.bnd.gradle:${bnd_version}";"org.eclipse.ecf:org.eclipse.ecf.bndtools.grpc:1.1.0:jar"
classpath "biz.aQute.bnd:biz.aQute.bnd.gradle:${bnd_version}";"org.eclipse.ecf:org.eclipse.ecf.bndtools.grpc:1.2.0:jar"
}
/* Add bnd gradle plugin to buildscript classpath of rootProject */
def bndPlugin = files(configurations.classpath.files)
Expand Down

0 comments on commit 82e7e71

Please sign in to comment.