Skip to content

Commit 36312f1

Browse files
Copilotchrjohn
andauthored
fix: use netty-example with netty-tcnative exclusion instead of copying classes
Agent-Logs-Url: https://github.com/quickfix-j/quickfixj/sessions/dddee8f3-07be-480b-a92e-09a9dafb9a52 Co-authored-by: chrjohn <6644028+chrjohn@users.noreply.github.com>
1 parent 463102b commit 36312f1

8 files changed

Lines changed: 8 additions & 426 deletions

File tree

quickfixj-core/pom.xml

Lines changed: 7 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -119,33 +119,15 @@
119119
</dependency>
120120
<dependency>
121121
<groupId>io.netty</groupId>
122-
<artifactId>netty-transport</artifactId>
123-
<version>${netty.version}</version>
124-
<scope>test</scope>
125-
</dependency>
126-
<dependency>
127-
<groupId>io.netty</groupId>
128-
<artifactId>netty-codec</artifactId>
129-
<version>${netty.version}</version>
130-
<scope>test</scope>
131-
</dependency>
132-
<dependency>
133-
<groupId>io.netty</groupId>
134-
<artifactId>netty-codec-http</artifactId>
135-
<version>${netty.version}</version>
136-
<scope>test</scope>
137-
</dependency>
138-
<dependency>
139-
<groupId>io.netty</groupId>
140-
<artifactId>netty-codec-socks</artifactId>
141-
<version>${netty.version}</version>
142-
<scope>test</scope>
143-
</dependency>
144-
<dependency>
145-
<groupId>io.netty</groupId>
146-
<artifactId>netty-handler</artifactId>
122+
<artifactId>netty-example</artifactId>
147123
<version>${netty.version}</version>
148124
<scope>test</scope>
125+
<exclusions>
126+
<exclusion>
127+
<groupId>io.netty</groupId>
128+
<artifactId>netty-tcnative</artifactId>
129+
</exclusion>
130+
</exclusions>
149131
</dependency>
150132
<dependency>
151133
<groupId>org.burningwave</groupId>

quickfixj-core/src/test/java/quickfix/mina/SocksProxyServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import io.netty.channel.Channel;
55
import io.netty.channel.nio.NioEventLoopGroup;
66
import io.netty.channel.socket.nio.NioServerSocketChannel;
7-
import quickfix.mina.socksproxy.SocksServerInitializer;
7+
import io.netty.example.socksproxy.SocksServerInitializer;
88
import io.netty.handler.logging.LogLevel;
99
import io.netty.handler.logging.LoggingHandler;
1010
import org.apache.mina.util.DaemonThreadFactory;

quickfixj-core/src/test/java/quickfix/mina/socksproxy/DirectClientHandler.java

Lines changed: 0 additions & 41 deletions
This file was deleted.

quickfixj-core/src/test/java/quickfix/mina/socksproxy/RelayHandler.java

Lines changed: 0 additions & 58 deletions
This file was deleted.

quickfixj-core/src/test/java/quickfix/mina/socksproxy/SocksServerConnectHandler.java

Lines changed: 0 additions & 135 deletions
This file was deleted.

quickfixj-core/src/test/java/quickfix/mina/socksproxy/SocksServerHandler.java

Lines changed: 0 additions & 99 deletions
This file was deleted.

0 commit comments

Comments
 (0)