Skip to content

Commit

Permalink
Update versions (LesnyRumcajs#238)
Browse files Browse the repository at this point in the history
* update quarkus version to 2.9.0.Final

* update java application versions

* update java_quarkus openjdk version to 18.0.1
  • Loading branch information
gcnyin authored May 16, 2022
1 parent 1adfb27 commit da158cd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions java_hotspot_grpc_sgc_bench/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
// Provide convenience executables for trying out the examples.
id 'application'
// ASSUMES GRADLE 2.12 OR HIGHER. Use plugin version 0.7.5 with earlier gradle versions
id 'com.google.protobuf' version '0.8.13'
id 'com.google.protobuf' version '0.8.18'
// Generate IntelliJ IDEA's .idea & .iml project files
id 'idea'
}
Expand All @@ -14,16 +14,16 @@ repositories {
mavenLocal()
}

sourceCompatibility = 14
targetCompatibility = 14
sourceCompatibility = 17
targetCompatibility = 17

// IMPORTANT: You probably want the non-SNAPSHOT version of gRPC. Make sure you
// are looking at a tagged version of the example and not "master"!

// Feel free to delete the comment at the next line. It is just for safely
// updating the version in our release process.
def grpcVersion = '1.31.1' // CURRENT_GRPC_VERSION
def protobufVersion = '3.13.0'
def grpcVersion = '1.46.0' // CURRENT_GRPC_VERSION
def protobufVersion = '3.20.1'
def protocVersion = protobufVersion

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion java_quarkus_bench/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM adoptopenjdk/openjdk11:ubi
FROM openjdk:18.0.1

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions java_quarkus_bench/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus-plugin.version>2.8.1.Final</quarkus-plugin.version>
<quarkus-plugin.version>2.9.0.Final</quarkus-plugin.version>
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
<quarkus.platform.version>2.8.1.Final</quarkus.platform.version>
<quarkus.platform.version>2.9.0.Final</quarkus.platform.version>
<surefire-plugin.version>3.0.0-M6</surefire-plugin.version>
</properties>
<dependencyManagement>
Expand Down

0 comments on commit da158cd

Please sign in to comment.