Skip to content

Commit

Permalink
fix: align the java version with the master branch and check the reuslts
Browse files Browse the repository at this point in the history
  • Loading branch information
lfdesousa committed Jun 21, 2024
1 parent 92e903a commit be2a043
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 17
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
java-version: '11'
distribution: 'adopt'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>ch.bfh</groupId>
<artifactId>mobile-access-gateway</artifactId>
<version>0.0.31</version>
<version>0.0.32</version>
<description>FHIR Gateway supporting the PMIR and MHD server actors and uses XDS/PIXV3 to communicate with an XDS Affinity Domain</description>
<packaging>jar</packaging>

Expand All @@ -17,7 +17,7 @@
<maven.compiler.target>1.11</maven.compiler.target>
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format>

<java.version>17</java.version>
<java.version>11</java.version>

<!-- plugins -->
<compiler-plugin-version>3.10.1</compiler-plugin-version>
Expand Down

0 comments on commit be2a043

Please sign in to comment.