Skip to content

Commit

Permalink
Remove yoj-repository-ydb-v1 module, support only YDB SDK v2.x (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
nvamelichev authored Jun 2, 2024
1 parent 443869c commit 9ef88c6
Show file tree
Hide file tree
Showing 96 changed files with 0 additions and 14,030 deletions.
2 changes: 0 additions & 2 deletions .bazelproject
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ directories:
-repository-inmemory/pom.xml
-repository-test/pom.xml
-repository-ydb-common/pom.xml
-repository-ydb-v1/pom.xml
-repository-ydb-v2/pom.xml
-tx-aspect/pom.xml
-util/pom.xml
Expand All @@ -19,7 +18,6 @@ test_sources:
databind/src/test
repository/src/test
repository-inmemory/src/test
repository-ydb-v1/src/test
repository-ydb-v2/src/test
util/src/test

Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ minimally intrusive, so that your domain objects (with all the juicy business lo
- `repository-inmemory`: In-Memory Repository API implementation using persistent data structures from Eclipse
Collections. Has YDB-like semantics for data modification, to easily and quickly test your business logic without
spinning containers or accessing a real YDB installation. **Highly recommended.**
- `repository-ydb-v1`: Repository API implementation for YDB. Uses legacy YDB SDK v1.x. **On life support till Summer 2024 (bug fixes only)**
- `repository-ydb-common`: Common Logic for all YDB Repository implementations, regardless of the YDB SDK version used.
- `repository-test`: Basic tests which all Repository implementations must pass.
- `json-jackson-v2`: Support for JSON serialization and deserialization of entity fields, using Jackson 2.x.
Expand Down
5 changes: 0 additions & 5 deletions WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ SNAKEYAML_VERSION = "1.33"

YDB_PROTOAPI_VERSION = "1.6.0"

YDB_SDK_V1_VERSION = "1.14.14"

YDB_SDK_VERSION = "2.1.12"

maven_install(
Expand All @@ -54,9 +52,6 @@ maven_install(
"com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:" + JACKSON_VERSION,
"com.google.code.findbugs:jsr305:" + FIND_BUGS_VERSION,
"com.google.guava:guava:" + GUAVA_VERSION,
"com.yandex.ydb:ydb-sdk-core:" + YDB_SDK_V1_VERSION,
"com.yandex.ydb:ydb-sdk-proto:" + YDB_SDK_V1_VERSION,
"com.yandex.ydb:ydb-sdk-table:" + YDB_SDK_V1_VERSION,
"io.grpc:grpc-bom:" + GRPC_VERSION,
"io.grpc:grpc-netty-shaded:" + GRPC_VERSION,
"io.grpc:grpc-netty:" + GRPC_VERSION,
Expand Down
5 changes: 0 additions & 5 deletions bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,6 @@
<artifactId>yoj-repository-ydb-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>tech.ydb.yoj</groupId>
<artifactId>yoj-repository-ydb-v1</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>tech.ydb.yoj</groupId>
<artifactId>yoj-repository-ydb-v2</artifactId>
Expand Down
19 changes: 0 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
<module>repository-test</module>
<module>repository-inmemory</module>
<module>repository-ydb-common</module>
<module>repository-ydb-v1</module>
<module>repository-ydb-v2</module>
<module>aspect</module>
<module>util</module>
Expand Down Expand Up @@ -109,9 +108,6 @@
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
<os-maven-plugin.version>1.7.1</os-maven-plugin.version>

<!-- YDB SDK 1.x -->
<ydb-sdk-v1.version>1.14.14</ydb-sdk-v1.version>

<!-- YDB SDK 2.x -->
<ydb-sdk-v2.version>2.1.10</ydb-sdk-v2.version>
<ydb-proto-api.version>1.6.0</ydb-proto-api.version>
Expand Down Expand Up @@ -588,21 +584,6 @@
<artifactId>commons-text</artifactId>
<version>${commons-text.version}</version>
</dependency>
<dependency>
<groupId>com.yandex.ydb</groupId>
<artifactId>ydb-sdk-core</artifactId>
<version>${ydb-sdk-v1.version}</version>
</dependency>
<dependency>
<groupId>com.yandex.ydb</groupId>
<artifactId>ydb-sdk-table</artifactId>
<version>${ydb-sdk-v1.version}</version>
</dependency>
<dependency>
<groupId>com.yandex.ydb</groupId>
<artifactId>ydb-sdk-proto</artifactId>
<version>${ydb-sdk-v1.version}</version>
</dependency>
<dependency>
<groupId>tech.ydb</groupId>
<artifactId>ydb-sdk-bom</artifactId>
Expand Down
57 changes: 0 additions & 57 deletions repository-ydb-v1/BUILD

This file was deleted.

109 changes: 0 additions & 109 deletions repository-ydb-v1/pom.xml

This file was deleted.

This file was deleted.

Loading

0 comments on commit 9ef88c6

Please sign in to comment.