Skip to content

Commit

Permalink
bump jetty to 11.0.23
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Dietrich <[email protected]>
  • Loading branch information
cdietrich committed Aug 21, 2024
1 parent 1484239 commit 6bd76c2
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {
api "org.webjars:requirejs:2.3.7"
api "org.webjars:jquery:3.6.0"
api "org.webjars:ace:1.3.3"
providedCompile "org.eclipse.jetty:jetty-annotations:11.0.21"
providedCompile "org.eclipse.jetty:jetty-annotations:11.0.23"
providedCompile "org.slf4j:slf4j-simple:2.0.5"
}
task jettyRun(type:JavaExec) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {
api "org.webjars:requirejs:2.3.7"
api "org.webjars:jquery:3.6.0"
api "org.webjars:ace:1.3.3"
providedCompile "org.eclipse.jetty:jetty-annotations:11.0.21"
providedCompile "org.eclipse.jetty:jetty-annotations:11.0.23"
providedCompile "org.slf4j:slf4j-simple:2.0.5"
}
task jettyRun(type:JavaExec) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>11.0.21</version>
<version>11.0.23</version>
<configuration>
<webAppSourceDirectory>WebRoot</webAppSourceDirectory>
</configuration>
Expand Down Expand Up @@ -116,7 +116,7 @@
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-annotations</artifactId>
<version>11.0.21</version>
<version>11.0.23</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>11.0.21</version>
<version>11.0.23</version>
<configuration>
<webAppSourceDirectory>WebRoot</webAppSourceDirectory>
</configuration>
Expand Down Expand Up @@ -116,7 +116,7 @@
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-annotations</artifactId>
<version>11.0.21</version>
<version>11.0.23</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>11.0.21</version>
<version>11.0.23</version>
<configuration>
<webAppSourceDirectory>WebRoot</webAppSourceDirectory>
</configuration>
Expand Down Expand Up @@ -116,7 +116,7 @@
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-annotations</artifactId>
<version>11.0.21</version>
<version>11.0.23</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>11.0.21</version>
<version>11.0.23</version>
<configuration>
<webAppSourceDirectory>WebRoot</webAppSourceDirectory>
</configuration>
Expand Down Expand Up @@ -116,7 +116,7 @@
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-annotations</artifactId>
<version>11.0.21</version>
<version>11.0.23</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>11.0.21</version>
<version>11.0.23</version>
<configuration>
<webAppSourceDirectory>WebRoot</webAppSourceDirectory>
</configuration>
Expand Down Expand Up @@ -116,7 +116,7 @@
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-annotations</artifactId>
<version>11.0.21</version>
<version>11.0.23</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>11.0.21</version>
<version>11.0.23</version>
<configuration>
<webAppSourceDirectory>src/main/webapp</webAppSourceDirectory>
</configuration>
Expand Down Expand Up @@ -106,7 +106,7 @@
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-annotations</artifactId>
<version>11.0.21</version>
<version>11.0.23</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.xtext.web.example.jetty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<packaging>war</packaging>

<properties>
<jetty-version>11.0.21</jetty-version>
<jetty-version>11.0.23</jetty-version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class WebProjectDescriptor extends ProjectDescriptor {
static val REQUIREJS_VERSION = '2.3.7'
// static val REQUIREJS_TEXT_VERSION = '2.0.15'
static val JQUERY_VERSION = '3.6.0'
static val JETTY_VERSION = '11.0.21'
static val JETTY_VERSION = '11.0.23'
static val SLF4J_VERSION = '2.0.5'
static val ACE_VERSION = '1.3.3'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class WebProjectDescriptor extends ProjectDescriptor {

private static final String JQUERY_VERSION = "3.6.0";

private static final String JETTY_VERSION = "11.0.21";
private static final String JETTY_VERSION = "11.0.23";

private static final String SLF4J_VERSION = "2.0.5";

Expand Down

0 comments on commit 6bd76c2

Please sign in to comment.