Skip to content

Commit 9ef88c6

Browse files
authored
Remove yoj-repository-ydb-v1 module, support only YDB SDK v2.x (#74)
1 parent 443869c commit 9ef88c6

File tree

96 files changed

+0
-14030
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+0
-14030
lines changed

.bazelproject

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ directories:
1010
-repository-inmemory/pom.xml
1111
-repository-test/pom.xml
1212
-repository-ydb-common/pom.xml
13-
-repository-ydb-v1/pom.xml
1413
-repository-ydb-v2/pom.xml
1514
-tx-aspect/pom.xml
1615
-util/pom.xml
@@ -19,7 +18,6 @@ test_sources:
1918
databind/src/test
2019
repository/src/test
2120
repository-inmemory/src/test
22-
repository-ydb-v1/src/test
2321
repository-ydb-v2/src/test
2422
util/src/test
2523

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ minimally intrusive, so that your domain objects (with all the juicy business lo
3535
- `repository-inmemory`: In-Memory Repository API implementation using persistent data structures from Eclipse
3636
Collections. Has YDB-like semantics for data modification, to easily and quickly test your business logic without
3737
spinning containers or accessing a real YDB installation. **Highly recommended.**
38-
- `repository-ydb-v1`: Repository API implementation for YDB. Uses legacy YDB SDK v1.x. **On life support till Summer 2024 (bug fixes only)**
3938
- `repository-ydb-common`: Common Logic for all YDB Repository implementations, regardless of the YDB SDK version used.
4039
- `repository-test`: Basic tests which all Repository implementations must pass.
4140
- `json-jackson-v2`: Support for JSON serialization and deserialization of entity fields, using Jackson 2.x.

WORKSPACE.bazel

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ SNAKEYAML_VERSION = "1.33"
4141

4242
YDB_PROTOAPI_VERSION = "1.6.0"
4343

44-
YDB_SDK_V1_VERSION = "1.14.14"
45-
4644
YDB_SDK_VERSION = "2.1.12"
4745

4846
maven_install(
@@ -54,9 +52,6 @@ maven_install(
5452
"com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:" + JACKSON_VERSION,
5553
"com.google.code.findbugs:jsr305:" + FIND_BUGS_VERSION,
5654
"com.google.guava:guava:" + GUAVA_VERSION,
57-
"com.yandex.ydb:ydb-sdk-core:" + YDB_SDK_V1_VERSION,
58-
"com.yandex.ydb:ydb-sdk-proto:" + YDB_SDK_V1_VERSION,
59-
"com.yandex.ydb:ydb-sdk-table:" + YDB_SDK_V1_VERSION,
6055
"io.grpc:grpc-bom:" + GRPC_VERSION,
6156
"io.grpc:grpc-netty-shaded:" + GRPC_VERSION,
6257
"io.grpc:grpc-netty:" + GRPC_VERSION,

bom/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,6 @@
127127
<artifactId>yoj-repository-ydb-common</artifactId>
128128
<version>${project.version}</version>
129129
</dependency>
130-
<dependency>
131-
<groupId>tech.ydb.yoj</groupId>
132-
<artifactId>yoj-repository-ydb-v1</artifactId>
133-
<version>${project.version}</version>
134-
</dependency>
135130
<dependency>
136131
<groupId>tech.ydb.yoj</groupId>
137132
<artifactId>yoj-repository-ydb-v2</artifactId>

pom.xml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
<module>repository-test</module>
2424
<module>repository-inmemory</module>
2525
<module>repository-ydb-common</module>
26-
<module>repository-ydb-v1</module>
2726
<module>repository-ydb-v2</module>
2827
<module>aspect</module>
2928
<module>util</module>
@@ -109,9 +108,6 @@
109108
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
110109
<os-maven-plugin.version>1.7.1</os-maven-plugin.version>
111110

112-
<!-- YDB SDK 1.x -->
113-
<ydb-sdk-v1.version>1.14.14</ydb-sdk-v1.version>
114-
115111
<!-- YDB SDK 2.x -->
116112
<ydb-sdk-v2.version>2.1.10</ydb-sdk-v2.version>
117113
<ydb-proto-api.version>1.6.0</ydb-proto-api.version>
@@ -588,21 +584,6 @@
588584
<artifactId>commons-text</artifactId>
589585
<version>${commons-text.version}</version>
590586
</dependency>
591-
<dependency>
592-
<groupId>com.yandex.ydb</groupId>
593-
<artifactId>ydb-sdk-core</artifactId>
594-
<version>${ydb-sdk-v1.version}</version>
595-
</dependency>
596-
<dependency>
597-
<groupId>com.yandex.ydb</groupId>
598-
<artifactId>ydb-sdk-table</artifactId>
599-
<version>${ydb-sdk-v1.version}</version>
600-
</dependency>
601-
<dependency>
602-
<groupId>com.yandex.ydb</groupId>
603-
<artifactId>ydb-sdk-proto</artifactId>
604-
<version>${ydb-sdk-v1.version}</version>
605-
</dependency>
606587
<dependency>
607588
<groupId>tech.ydb</groupId>
608589
<artifactId>ydb-sdk-bom</artifactId>

repository-ydb-v1/BUILD

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

repository-ydb-v1/pom.xml

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

repository-ydb-v1/src/main/java/tech/ydb/yoj/repository/ydb/YdbConfig.java

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

0 commit comments

Comments
 (0)