Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
fix sync version failure (#206)
Browse files Browse the repository at this point in the history
* fix sync version failure

Signed-off-by: Kosuke Morimoto <[email protected]>

* fix

Signed-off-by: Kosuke Morimoto <[email protected]>

---------

Signed-off-by: Kosuke Morimoto <[email protected]>
  • Loading branch information
kmrmt authored Oct 8, 2024
1 parent 6a75e21 commit 6050f11
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 16 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ $(VALD_DIR):
.PHONY: pom
## update dependencies
pom: $(LEIN_PATH)
yq -o=tsv '.project.dependencies.dependency[] | [.groupId, .artifactId, .version] | join(" ")' pom.xml | while read groupId artifactId version; do sed -i -e "s@$$groupId/$$artifactId \".*\"@$$groupId/$$artifactId \"$$version\"@g" project.clj; done
./lein pom

.PHONY: proto
Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,22 +66,22 @@
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.11.1</version>
<version>1.12.0</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-api</artifactId>
<version>1.58.0</version>
<version>1.66.0</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-core</artifactId>
<version>1.58.0</version>
<version>1.66.0</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
<version>1.58.0</version>
<version>1.66.0</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
Expand All @@ -91,7 +91,7 @@
<dependency>
<groupId>build.buf</groupId>
<artifactId>protovalidate</artifactId>
<version>0.1.8</version>
<version>0.2.1</version>
</dependency>
<dependency>
<groupId>org.vdaas.vald</groupId>
Expand All @@ -101,7 +101,7 @@
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-okhttp</artifactId>
<version>1.58.0</version>
<version>1.66.0</version>
<exclusions>
<exclusion>
<artifactId>grpc-core</artifactId>
Expand Down
20 changes: 10 additions & 10 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,30 @@
:username :env/clojars_user
:password :env/clojars_pass
:url "https://clojars.org/repo"}]]
:dependencies [[org.clojure/clojure "1.11.1"]
[io.grpc/grpc-api "1.58.0"]
[io.grpc/grpc-core "1.58.0"
:dependencies [[org.clojure/clojure "1.12.0"]
[io.grpc/grpc-api "1.66.0"]
[io.grpc/grpc-core "1.66.0"
:exlusions [io.grpc/grpc-api]]
[io.grpc/grpc-protobuf "1.58.0"]
[io.grpc/grpc-stub "1.58.0"]
[build.buf/protovalidate "0.1.8"]
[io.grpc/grpc-protobuf "1.66.0"]
[io.grpc/grpc-stub "1.66.0"]
[build.buf/protovalidate "0.2.1"]
[org.vdaas.vald/vald-client-java
#=(subs
#=(clojure.string/trim
#=(slurp "VALD_CLIENT_CLJ_VERSION")) 1)]]
:repl-options {:init-ns vald-client-clj.core}
:profiles {:dev
{:dependencies [[io.grpc/grpc-okhttp "1.58.0"
{:dependencies [[io.grpc/grpc-okhttp "1.66.0"
:exclusions [io.grpc/grpc-core]]
[metosin/jsonista "0.3.7"]
[camel-snake-kebab "0.4.3"]]}
[camel-snake-kebab/camel-snake-kebab "0.4.3"]]}
:cmd
{:source-paths ["cmd"]
:dependencies [[org.clojure/tools.cli "1.0.219"]
[io.grpc/grpc-okhttp "1.58.0"
[io.grpc/grpc-okhttp "1.66.0"
:exclusions [io.grpc/grpc-core]]
[metosin/jsonista "0.3.7"]
[camel-snake-kebab "0.4.3"]]
[camel-snake-kebab/camel-snake-kebab "0.4.3"]]
:aot :all
:global-vars {*assert* false}
:main vald-client-clj.cmd}})

0 comments on commit 6050f11

Please sign in to comment.