Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <[email protected]>
  • Loading branch information
Yury-Fridlyand committed Nov 21, 2024
1 parent 378d690 commit ed5cd7e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ name: Java CI

on:
push:
branches:
- main
- release-*
- v*
paths:
- glide-core/src/**
- glide-core/redis-rs/redis/src/**
Expand Down Expand Up @@ -118,7 +114,6 @@ jobs:
working-directory: java/jars
run: |
for file in bundle*.jar; do jar xf $file; done
tree .
- name: Build java client
working-directory: java
Expand Down
6 changes: 4 additions & 2 deletions java/integTest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,19 @@ repositories {

dependencies {
// client
implementation files("../jars/valkey-glide-v1.2.0-rc1-${osdetector.classifier}.jar")
implementation files("../jars/valkey-glide-1.2.0-rc1-${osdetector.classifier}.jar")

implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.13.0'
implementation 'com.google.code.gson:gson:2.10.1'

// https://github.com/netty/netty/wiki/Native-transports
// At the moment, Windows is not supported
implementation group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.100.Final', classifier: 'linux-x86_64'
implementation group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.100.Final', classifier: 'linux-aarch_64'
implementation group: 'io.netty', name: 'netty-transport-native-kqueue', version: '4.1.100.Final', classifier: 'osx-x86_64'
implementation group: 'io.netty', name: 'netty-transport-native-kqueue', version: '4.1.100.Final', classifier: 'osx-aarch_64'

implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '4.27.1'
implementation group: 'io.netty', name: 'netty-handler', version: '4.1.100.Final'
// junit
testImplementation 'org.mockito:mockito-junit-jupiter:3.12.4'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: '5.10.2'
Expand Down

0 comments on commit ed5cd7e

Please sign in to comment.