Skip to content

Commit

Permalink
Added support for java 21
Browse files Browse the repository at this point in the history
  • Loading branch information
danielflower committed Oct 17, 2023
1 parent 0ad307a commit 84dc90f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
15 changes: 4 additions & 11 deletions app-runner-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.36</version>
<version>2.0.9</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.4.5</version>
<version>1.3.11</version>
<scope>test</scope>
</dependency>

Expand All @@ -40,7 +40,7 @@
<dependency>
<groupId>io.muserver</groupId>
<artifactId>mu-server</artifactId>
<version>0.73.5</version>
<version>0.74.3</version>
</dependency>
<dependency>
<groupId>io.muserver</groupId>
Expand Down Expand Up @@ -72,13 +72,6 @@
<artifactId>jetty-client</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
<version>2.0.59.Final</version>
<classifier>linux-x86_64</classifier>
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
Expand Down Expand Up @@ -153,7 +146,7 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
<version>3.8.6</version>
<version>3.9.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
Expand Down
11 changes: 9 additions & 2 deletions app-runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.36</version>
<version>2.0.9</version>
</dependency>
<dependency>
<groupId>com.danielflower.apprunner</groupId>
Expand All @@ -26,7 +26,14 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.4.5</version>
<version>1.3.11</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative-boringssl-static</artifactId>
<version>2.0.62.Final</version>
<classifier>linux-x86_64</classifier>
<scope>runtime</scope>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions sample-apps/maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.36</version>
<version>2.0.9</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.11</version>
<version>1.3.11</version>
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>io.muserver</groupId>
<artifactId>mu-server</artifactId>
<version>0.72.19</version>
<version>0.74.3</version>
</dependency>

</dependencies>
Expand Down

0 comments on commit 84dc90f

Please sign in to comment.