Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ See [client.http](client.http) for example calls to the Mobile Access Gateway.
## Run the JAR

1. Clone https://github.com/oehf/ipf.git
2. run mvn clean install -DskipTests in this directory, this should produce 4.0-SNAPSHOT (you need at least jdk11)
2. run mvn clean install -DskipTests in this directory, this should produce 4.0-SNAPSHOT (you need at least jdk17)
3. Clone this repo
4. Install the dependencies: `mvn install`
5. Either run it from your favorite IDE or in the CLI: `mvn clean compile && mvn exec:java -Dexec.mainClass="ch.bfh.ti.i4mi.mag.MobileAccessGateway"`
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>11</java.version>
<java.version>17</java.version>

<!-- plugins -->
<compiler-plugin-version>3.10.1</compiler-plugin-version>
Expand All @@ -26,14 +26,14 @@
<spring-boot-plugin-version>2.6.7</spring-boot-plugin-version>

<!-- libraries -->
<husky-version>2.1.1</husky-version>
<camel-version>3.14.2</camel-version>
<hibernate-version>5.2.5.Final</hibernate-version>
<hl7v3-code-jar-version>1.3.7</hl7v3-code-jar-version>
<ipf-version>4.3.1</ipf-version>
<opensaml-version>2.6.6</opensaml-version>
<spring-security-saml2-core-version>1.0.10.RELEASE</spring-security-saml2-core-version>


<start-class>ch.bfh.ti.i4mi.mag.MobileAccessGateway</start-class>
</properties>

Expand Down