Skip to content

Commit

Permalink
Merge branch 'master' into 358-exception-occurring-when-encoding-the-…
Browse files Browse the repository at this point in the history
…path
  • Loading branch information
lwitkowski committed Mar 28, 2024
2 parents 94a0866 + 2e958b7 commit 50f3823
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ You're more than welcome to work on this extension. Check [issues](../../issues/
or add your own suggestions and start discussion. Then create fork or branch and Pull Request once it's ready.

## Setup
- JDK 11
- JDK 11 & 17
- GraalVM for native test run, check [Quarkus Contributing guide](https://github.com/quarkusio/quarkus/blob/main/CONTRIBUTING.md#setup) for more details.

### IDE Config and Code Style
Expand Down
6 changes: 4 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@
<url>https://github.com/Tietoevry/quarkus-resteasy-problem</url>

<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.release>${java.version}</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

Expand Down

0 comments on commit 50f3823

Please sign in to comment.