Skip to content

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/01-get-started/02-java-hello-world.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ Go to the [Maven Repository Uber Cadence Java Client Page](https://mvnrepository
1818
and find the latest version of the library. Include it as a dependency into your Java project. For example if you
1919
are using Gradle the dependency looks like:
2020
```bash
21-
compile group: 'com.uber.cadence', name: 'cadence-client', version: '<latest_version>'
21+
implementation group: 'com.uber.cadence', name: 'cadence-client', version: '<latest_version>'
2222
```
2323
Also add the following dependencies that cadence-client relies on:
2424
```bash
25-
compile group: 'commons-configuration', name: 'commons-configuration', version: '1.9'
26-
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
25+
implementation group: 'commons-configuration', name: 'commons-configuration', version: '1.9'
26+
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
2727
```
2828
Make sure that the following code compiles:
2929
```java

0 commit comments

Comments
 (0)