Skip to content

Commit

Permalink
Bump to Quarkus 3.2.0.Final
Browse files Browse the repository at this point in the history
  • Loading branch information
Sgitario committed Jun 29, 2023
1 parent 29fdf03 commit a14b691
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ private boolean isBuildTimeProperty(String name) {
if (buildProperties == null) {
buildProperties = new HashSet<>();
try {
Scanner scanner = new Scanner(new File(HelmProcessor.class.getResource(BUILD_TIME_PROPERTIES).getFile()));
Scanner scanner = new Scanner(HelmProcessor.class.getResourceAsStream(BUILD_TIME_PROPERTIES));
while (scanner.hasNextLine()) {
buildProperties.add(scanner.nextLine());
}
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/includes/attributes.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:quarkus-version: 3.2.0.CR1
:quarkus-version: 3.2.0.Final
:quarkus-helm-version: 1.0.8
:maven-version: 3.8.1+

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.version>3.2.0.CR1</quarkus.version>
<quarkus.version>3.2.0.Final</quarkus.version>
</properties>
<dependencyManagement>
<dependencies>
Expand Down

0 comments on commit a14b691

Please sign in to comment.