You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/pull_request_template.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,5 +17,5 @@
17
17
<!-- Is it notable for release? e.g. schema updates, configuration or data migration required? If so, please mention it, and also update CHANGELOG.md -->
18
18
**Release notes**
19
19
20
-
<!-- Is there any documentation updates should be made for config, https://cadenceworkflow.io/docs/operation-guide/setup/ ? If so, please open an PR in https://github.com/uber/cadence-docs -->
20
+
<!-- Is there any documentation updates should be made for config, https://cadenceworkflow.io/docs/operation-guide/setup/ ? If so, please open an PR in https://github.com/cadence-workflow/cadence-docs -->
:warning: Note 1: It's currently compatible with Java 8 compiler but no guarantee in the future.
16
16
17
17
## IntelliJ IDE integration (Optional)
18
18
19
-
* Make sure you set the gradle path with the right version ([currently 6.x](https://github.com/uber/cadence-java-client/blob/master/gradle/wrapper/gradle-wrapper.properties))
19
+
* Make sure you set the gradle path with the right version ([currently 6.x](https://github.com/cadence-workflow/cadence-java-client/blob/master/gradle/wrapper/gradle-wrapper.properties))
To test locally, you can publish to [MavenLocal](https://docs.gradle.org/current/userguide/declaring_repositories.html#sec:case-for-maven-local)
56
56
57
57
1. Change `build.gradle`:
58
-
Comment out the first section in `publications` ( line 160 to line 191 in [this commit](https://github.com/uber/cadence-java-client/blob/c9ec6786aa9f866b0310292ea3ee5df63adc8799/build.gradle#L160))
58
+
Comment out the first section in `publications` ( line 160 to line 191 in [this commit](https://github.com/cadence-workflow/cadence-java-client/blob/c9ec6786aa9f866b0310292ea3ee5df63adc8799/build.gradle#L160))
59
59
60
-
2. Change the [version](https://github.com/uber/cadence-java-client/blob/c9ec6786aa9f866b0310292ea3ee5df63adc8799/build.gradle#L43) to add a `local` suffix. E.g.
60
+
2. Change the [version](https://github.com/cadence-workflow/cadence-java-client/blob/c9ec6786aa9f866b0310292ea3ee5df63adc8799/build.gradle#L43) to add a `local` suffix. E.g.
61
61
```
62
62
version = '3.3.0'
63
63
````
@@ -71,13 +71,13 @@ Then run the command
71
71
```
72
72
Now you have the local cadence-java-client in your machine using veriosn `3.3.0-local`
73
73
74
-
3. To test with Cadence Java Samples, [change](https://github.com/uber/cadence-java-samples/blob/master/build.gradle#L32)`mavenCentral()` to `mavenLocal()`
75
-
and also change the [version](https://github.com/uber/cadence-java-samples/blob/a79d8d6e5860cf9986bf549fc1f96badecb09f8f/build.gradle#L38) with your suffix.
74
+
3. To test with Cadence Java Samples, [change](https://github.com/cadence-workflow/cadence-java-samples/blob/master/build.gradle#L32)`mavenCentral()` to `mavenLocal()`
75
+
and also change the [version](https://github.com/cadence-workflow/cadence-java-samples/blob/a79d8d6e5860cf9986bf549fc1f96badecb09f8f/build.gradle#L38) with your suffix.
76
76
77
-
Then `./gradlew build` and refer to the sample repo for how to run the code(it needs to run with a [Cadence server](https://github.com/uber/cadence)).
77
+
Then `./gradlew build` and refer to the sample repo for how to run the code(it needs to run with a [Cadence server](https://github.com/cadence-workflow/cadence)).
78
78
79
-
:warning: If you run into problem with `version.properties`[creation task](https://github.com/uber/cadence-java-client/blob/c9ec6786aa9f866b0310292ea3ee5df63adc8799/build.gradle#L109), you can comment the task out. It's okay for local testing.
80
-
The property file is being used by [Version class](https://github.com/uber/cadence-java-client/blob/master/src/main/java/com/uber/cadence/internal/Version.java#L39)to report the library version for logging/metrics.
79
+
:warning: If you run into problem with `version.properties`[creation task](https://github.com/cadence-workflow/cadence-java-client/blob/c9ec6786aa9f866b0310292ea3ee5df63adc8799/build.gradle#L109), you can comment the task out. It's okay for local testing.
80
+
The property file is being used by [Version class](https://github.com/cadence-workflow/cadence-java-client/blob/master/src/main/java/com/uber/cadence/internal/Version.java#L39)to report the library version for logging/metrics.
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,15 @@
1
1
# Java framework for Cadence [](https://github.com/cadence-workflow/cadence-java-client/actions/workflows/ci-checks.yml)[](https://www.javadoc.io/doc/com.uber.cadence/cadence-client)[](https://codecov.io/gh/cadence-workflow/cadence-java-client)
2
2
3
3
4
-
[Cadence](https://github.com/uber/cadence) is a distributed, scalable, durable, and highly available orchestration engine we developed at Uber Engineering to execute asynchronous long-running business logic in a scalable and resilient way.
4
+
[Cadence](https://github.com/cadence-workflow/cadence) is a distributed, scalable, durable, and highly available orchestration engine we developed at Uber Engineering to execute asynchronous long-running business logic in a scalable and resilient way.
5
5
6
6
`cadence-client` is the framework for authoring workflows and activities in Java.
7
7
8
-
If you are authoring in Go, see [Go Cadence Client](https://github.com/uber-go/cadence-client).
8
+
If you are authoring in Go, see [Go Cadence Client](https://github.com/cadence-workflow-go/cadence-client).
9
9
10
10
## Samples
11
11
12
-
For samples, see [Samples for the Java Cadence client](https://github.com/uber/cadence-java-samples).
12
+
For samples, see [Samples for the Java Cadence client](https://github.com/cadence-workflow/cadence-java-samples).
13
13
14
14
## Run Cadence Server
15
15
@@ -18,11 +18,11 @@ Run Cadence Server using Docker Compose:
0 commit comments