Skip to content
This repository was archived by the owner on Dec 12, 2022. It is now read-only.

Commit 6023897

Browse files
committed
Add working HttpSnoop example
1 parent bf80061 commit 6023897

File tree

10 files changed

+944
-72
lines changed

10 files changed

+944
-72
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ENV PATH=/home/build/apache-maven-3.6.3/bin:$PATH
2424
# Prepare a snapshot of Netty 5
2525
RUN git clone -b master https://github.com/netty/netty.git netty
2626
WORKDIR /home/build/netty
27-
RUN mvn install -DskipTests -T1C -B -am -pl buffer,handler
27+
RUN mvn install -DskipTests -T1C -B -am
2828
WORKDIR /home/build
2929

3030
# Prepare our own build

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,12 @@
400400
<version>${netty.version}</version>
401401
<scope>test</scope>
402402
</dependency>
403+
<dependency>
404+
<groupId>io.netty</groupId>
405+
<artifactId>netty-codec-http</artifactId>
406+
<version>${netty.version}</version>
407+
<scope>test</scope>
408+
</dependency>
403409
<dependency>
404410
<groupId>org.openjdk.jmh</groupId>
405411
<artifactId>jmh-core</artifactId>

0 commit comments

Comments
 (0)