Dependencies fix thanks to Tudor :)

This commit is contained in:
Mihai Moldovanu 2024-06-09 23:18:59 +03:00
parent 9bcb96183d
commit e41fa8c7aa
2 changed files with 2 additions and 4 deletions

View File

@ -12,9 +12,8 @@ repositories {
} }
dependencies { dependencies {
implementation 'org.scala-lang:scala-library:2.13.6' implementation 'com.twitter:finagle-thriftmux_2.13:20.1.0'
implementation 'com.twitter:finagle-thriftmux_2.13:22.4.0' implementation 'org.apache.thrift:libthrift:0.12.0'
implementation 'org.apache.thrift:libthrift:0.14.2'
testImplementation platform('org.junit:junit-bom:5.10.0') testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter' testImplementation 'org.junit.jupiter:junit-jupiter'

View File

@ -1,7 +1,6 @@
package org.example; package org.example;
import com.twitter.util.Future; import com.twitter.util.Future;
import org.example.HelloService;
public class HelloServiceImpl implements HelloService.ServiceIface { public class HelloServiceImpl implements HelloService.ServiceIface {