Skip to content

Commit

Permalink
Changes from review
Browse files Browse the repository at this point in the history
  • Loading branch information
joakime committed Nov 18, 2024
1 parent bfe4293 commit c4e1c16
Show file tree
Hide file tree
Showing 13 changed files with 32 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
<dependency>
<groupId>org.eclipse.jetty.compression</groupId>
<artifactId>jetty-compression-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ compression
experimental

[depend]
compression-common
compression

[files]
maven://com.aayushatharva.brotli4j/brotli4j/${brotli4j.version}|lib/compression/brotli4j-${brotli4j.version}.jar

[lib]
lib/compression/jetty-compression-common-${jetty.version}.jar
lib/compression/brotli4j-${brotli4j.version}.jar

[xml]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<name>Core :: Compression :: Common</name>
<description>Jetty Core Compression Common</description>
<properties>
<bundle-symbolic-name>${project.groupId}</bundle-symbolic-name>
<bundle-symbolic-name>${project.groupId}.common</bundle-symbolic-name>
</properties>
<dependencies>
<dependency>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
<dependency>
<groupId>org.eclipse.jetty.compression</groupId>
<artifactId>jetty-compression-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ compression
experimental

[depend]
compression-common
compression

[lib]
lib/compression/jetty-compression-common-${jetty.version}.jar
lib/compression/jetty-compression-gzip-${jetty.version}.jar

[xml]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
<dependency>
<groupId>org.eclipse.jetty.compression</groupId>
<artifactId>jetty-compression-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ experimental
server

[lib]
lib/compression/jetty-compression-common-${jetty.version}.jar
lib/compression/jetty-compression-server-${jetty.version}.jar

[xml]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public Set<String> getCompressExcludeMimeTypes()
* Get the set of excluded Path Specs for response compression.
*
* @return the set of excluded Path Specs
* @see #getCompressPathIncludes()
* @see #getCompressIncludesPath()
*/
@ManagedAttribute("Set of Response Compression Path Exclusions")
public Set<String> getCompressExcludePaths()
Expand Down Expand Up @@ -178,7 +178,7 @@ public Set<String> getCompressIncludeMimeTypes()
* @see #getCompressExcludePaths()
*/
@ManagedAttribute("Set of Response Compression Path Exclusions")
public Set<String> getCompressPathIncludes()
public Set<String> getCompressIncludesPath()
{
Set<String> includes = compressPaths.getIncluded();
return Collections.unmodifiableSet(includes);
Expand Down
4 changes: 0 additions & 4 deletions jetty-core/jetty-compression/jetty-compression-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,18 @@
<dependency>
<groupId>org.eclipse.jetty.compression</groupId>
<artifactId>jetty-compression-brotli</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.compression</groupId>
<artifactId>jetty-compression-gzip</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.compression</groupId>
<artifactId>jetty-compression-server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.compression</groupId>
<artifactId>jetty-compression-zstandard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
<dependency>
<groupId>org.eclipse.jetty.compression</groupId>
<artifactId>jetty-compression-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ compression
experimental

[depend]
compression-common
compression

[files]
maven://com.github.luben/zstd-jni/${zstd-jni.version}|lib/compression/zstd-jni-${zstd-jni.version}.jar

[lib]
lib/compression/jetty-compression-common-${jetty.version}.jar
lib/compression/zstd-jni-${zstd-jni.version}.jar

[xml]
Expand Down
25 changes: 25 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -954,6 +954,31 @@
<artifactId>jetty-xml</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<artifactId>jetty-compression-brotli</artifactId>
<groupId>org.eclipse.jetty.compression</groupId>
<version>${project.version}</version>
</dependency>
<dependency>
<artifactId>jetty-compression-common</artifactId>
<groupId>org.eclipse.jetty.compression</groupId>
<version>${project.version}</version>
</dependency>
<dependency>
<artifactId>jetty-compression-gzip</artifactId>
<groupId>org.eclipse.jetty.compression</groupId>
<version>${project.version}</version>
</dependency>
<dependency>
<artifactId>jetty-compression-server</artifactId>
<groupId>org.eclipse.jetty.compression</groupId>
<version>${project.version}</version>
</dependency>
<dependency>
<artifactId>jetty-compression-zstandard</artifactId>
<groupId>org.eclipse.jetty.compression</groupId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.fcgi</groupId>
<artifactId>jetty-fcgi-client</artifactId>
Expand Down

0 comments on commit c4e1c16

Please sign in to comment.