Skip to content

Version 8.0 #606

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 12 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
removed vst-protocol module
  • Loading branch information
rashtao committed Jun 6, 2025
commit c13f02f88add104462e4cf67f7c5eba5dd0edb24
1 change: 0 additions & 1 deletion dev-README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ Reports:
- [jackson-serde-json](jackson-serde-json/target/site/jacoco/index.html)
- [jackson-serde-vpack](jackson-serde-vpack/target/site/jacoco/index.html)
- [http-protocol](http-protocol/target/site/jacoco/index.html)
- [vst-protocol](vst-protocol/target/site/jacoco/index.html)

## update native image reflection configuration
To generate reflection configuration run [NativeImageHelper](./driver/src/test/java/helper/NativeImageHelper.java) and
Expand Down
6 changes: 0 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
<module>jackson-serde-vpack</module>
<module>jsonb-serde</module>
<module>http-protocol</module>
<module>vst-protocol</module>
</modules>
<packaging>pom</packaging>

Expand Down Expand Up @@ -127,11 +126,6 @@
<artifactId>http-protocol</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.arangodb</groupId>
<artifactId>vst-protocol</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.arangodb</groupId>
<artifactId>jackson-serde-json</artifactId>
Expand Down
13 changes: 0 additions & 13 deletions shaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@
<artifactId>http-protocol</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.arangodb</groupId>
<artifactId>vst-protocol</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.arangodb</groupId>
<artifactId>jackson-dataformat-velocypack</artifactId>
Expand Down Expand Up @@ -115,14 +110,6 @@
<exclude>META-INF/**</exclude>
</excludes>
</filter>
<filter>
<artifact>com.arangodb:vst-protocol</artifact>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
<exclude>META-INF/services/**</exclude>
<exclude>META-INF/maven/**</exclude>
</excludes>
</filter>
<filter>
<artifact>com.arangodb:http-protocol</artifact>
<excludes>
Expand Down
5 changes: 0 additions & 5 deletions test-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,6 @@
<artifactId>arangodb-java-driver</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.arangodb</groupId>
<artifactId>vst-protocol</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
</profile>
<profile>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import ch.qos.logback.classic.Level;
import com.arangodb.ArangoDB;
import com.arangodb.Protocol;
import com.arangodb.vst.internal.VstConnection;
import io.netty.handler.codec.http2.Http2FrameLogger;
import io.netty.handler.logging.LoggingHandler;
import org.junit.jupiter.api.*;
Expand All @@ -24,7 +23,6 @@ public class ProtocolTest extends TestUtils {
private static final Map<Class<?>, Level> logLevels = new HashMap<>();

static {
logLevels.put(VstConnection.class, Level.DEBUG);
logLevels.put(LoggingHandler.class, Level.DEBUG);
logLevels.put(Http2FrameLogger.class, Level.DEBUG);
}
Expand Down
36 changes: 0 additions & 36 deletions vst-protocol/pom.xml

This file was deleted.

108 changes: 0 additions & 108 deletions vst-protocol/src/main/java/com/arangodb/vst/VstCommunication.java

This file was deleted.

This file was deleted.

26 changes: 0 additions & 26 deletions vst-protocol/src/main/java/com/arangodb/vst/VstModule.java

This file was deleted.

72 changes: 0 additions & 72 deletions vst-protocol/src/main/java/com/arangodb/vst/VstProtocol.java

This file was deleted.

Loading