Skip to content

Commit

Permalink
GH-84 Bump Jetty version
Browse files Browse the repository at this point in the history
  • Loading branch information
dzikoysk committed May 27, 2020
1 parent 0f2e6b7 commit d82369f
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ $ docker pull dzikoysk/reposilite
List of available management commands

```bash
Reposilite 2.4.2 Commands:
Reposilite 2.4.3 Commands:
help - List available commands
status - Display metrics
tokens - List all generated tokens
Expand Down
36 changes: 35 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<groupId>org.panda-lang</groupId>
<artifactId>reposilite</artifactId>
<version>2.4.2</version>
<version>2.4.3</version>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
Expand All @@ -39,6 +39,9 @@
<maven.compiler.source>${reposilite.javaLanguageLevel}</maven.compiler.source>
<maven.compiler.target>${reposilite.javaVersion}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<!-- Dependencies -->
<jetty.version>9.4.29.v20200521</jetty.version>
</properties>

<dependencies>
Expand All @@ -51,8 +54,39 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-server</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- Jetty -->
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-server</artifactId>
<version>${jetty.version}</version>
</dependency>

<!-- Utilities -->
<dependency>
<groupId>org.panda-lang</groupId>
<artifactId>panda-utilities</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.2
2.4.3

0 comments on commit d82369f

Please sign in to comment.