Skip to content

Commit 0113644

Browse files
committed
chore(doc): change uber org to cadence-workflow
Signed-off-by: Shijie Sheng <liouvetren@gmail.com>
1 parent d67cf58 commit 0113644

7 files changed

Lines changed: 23 additions & 23 deletions

File tree

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
<!-- Is it notable for release? e.g. schema updates, configuration or data migration required? If so, please mention it, and also update CHANGELOG.md -->
1818
**Release notes**
1919

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 -->
2121
**Documentation Changes**

CONTRIBUTING.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ Join our community on the CNCF Slack workspace at [cloud-native.slack.com](https
99
## Development Environment
1010

1111
* Java 11 (currently, we use Java 11 to compile Java 8 code).
12-
* Gradle build tool [6.x](https://github.com/uber/cadence-java-client/blob/master/gradle/wrapper/gradle-wrapper.properties)
12+
* Gradle build tool [6.x](https://github.com/cadence-workflow/cadence-java-client/blob/master/gradle/wrapper/gradle-wrapper.properties)
1313
* Docker
1414

1515
:warning: Note 1: It's currently compatible with Java 8 compiler but no guarantee in the future.
1616

1717
## IntelliJ IDE integration (Optional)
1818

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))
2020

2121
![IntelliJ](https://user-images.githubusercontent.com/4523955/135696878-81c1e62e-eb04-45e6-9bcb-785ac38b6607.png)
2222

@@ -55,9 +55,9 @@ Build with:
5555
To test locally, you can publish to [MavenLocal](https://docs.gradle.org/current/userguide/declaring_repositories.html#sec:case-for-maven-local)
5656

5757
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))
5959

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.
6161
```
6262
version = '3.3.0'
6363
````
@@ -71,13 +71,13 @@ Then run the command
7171
```
7272
Now you have the local cadence-java-client in your machine using veriosn `3.3.0-local`
7373

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.
7676

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)).
7878

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.
8181

8282
## Unit & Integration Test
8383

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Java framework for Cadence [![CI Checks](https://github.com/cadence-workflow/cadence-java-client/actions/workflows/ci-checks.yml/badge.svg)](https://github.com/cadence-workflow/cadence-java-client/actions/workflows/ci-checks.yml) [![Javadocs](https://www.javadoc.io/badge/com.uber.cadence/cadence-client.svg)](https://www.javadoc.io/doc/com.uber.cadence/cadence-client) [![codecov](https://codecov.io/gh/cadence-workflow/cadence-java-client/graph/badge.svg?token=eVBGf4EmXr)](https://codecov.io/gh/cadence-workflow/cadence-java-client)
22

33

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.
55

66
`cadence-client` is the framework for authoring workflows and activities in Java.
77

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).
99

1010
## Samples
1111

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).
1313

1414
## Run Cadence Server
1515

@@ -18,11 +18,11 @@ Run Cadence Server using Docker Compose:
1818
curl -O https://raw.githubusercontent.com/uber/cadence/master/docker/docker-compose.yml
1919
docker-compose up
2020

21-
If this does not work, see instructions for running the Cadence Server at https://github.com/uber/cadence/blob/master/README.md.
21+
If this does not work, see instructions for running the Cadence Server at https://github.com/cadence-workflow/cadence/blob/master/README.md.
2222

2323
## Get CLI
2424

25-
[CLI is avaialable as an executable or as a docker image](https://github.com/uber/cadence/blob/master/tools/cli/README.md)
25+
[CLI is avaialable as an executable or as a docker image](https://github.com/cadence-workflow/cadence/blob/master/tools/cli/README.md)
2626

2727
## Build a configuration
2828

@@ -33,7 +33,7 @@ Add *cadence-client* as a dependency to your *pom.xml*:
3333
<artifactId>cadence-client</artifactId>
3434
<version>V.V.V</version>
3535
</dependency>
36-
36+
3737
or to *build.gradle*:
3838

3939
compile group: 'com.uber.cadence', name: 'cadence-client', version: 'V.V.V'

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -291,11 +291,11 @@ publishing {
291291
pom {
292292
name = 'cadence-client'
293293
description = 'Uber Cadence Java Client'
294-
url = 'https://github.com/uber-java/cadence-client'
294+
url = 'https://github.com/cadence-workflow/cadence-java-client'
295295
scm {
296-
url = 'https://github.com/uber-java/cadence-client'
297-
connection = 'scm:git:git@github.com:uber-java/cadence-client.git/'
298-
developerConnection = 'scm:git:git@github.com:uber-java/cadence-client.git/'
296+
url = 'https://github.com/cadence-workflow/cadence-java-client'
297+
connection = 'scm:git:git@github.com:cadence-workflow/cadence-java-client.git'
298+
developerConnection = 'scm:git:git@github.com:cadence-workflow/cadence-java-client.git'
299299
}
300300
licenses {
301301
license {

scripts/v4_entity_generator/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/uber/cadence-idl/java/generator
1+
module github.com/cadence-workflow/cadence-idl/java/generator
22

33
go 1.18
44

src/main/java/com/uber/cadence/internal/testservice/TestWorkflowService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ public SignalWithStartWorkflowExecutionAsyncResponse SignalWithStartWorkflowExec
616616
return new SignalWithStartWorkflowExecutionAsyncResponse();
617617
}
618618

619-
// TODO: https://github.com/uber/cadence-java-client/issues/359
619+
// TODO: https://github.com/cadence-workflow/cadence-java-client/issues/359
620620
@Override
621621
public ResetWorkflowExecutionResponse ResetWorkflowExecution(
622622
ResetWorkflowExecutionRequest resetRequest)

src/test/java/com/uber/cadence/workflow/WorkflowTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1561,7 +1561,7 @@ public void testWorkflowIdResuePolicy() {
15611561
assertEquals(2, stubF1_3.func1(2));
15621562

15631563
// Setting WorkflowIdReusePolicy to RejectDuplicate or AllowDuplicateFailedOnly does not work as
1564-
// expected. See https://github.com/uber/cadence-java-client/issues/295.
1564+
// expected. See https://github.com/cadence-workflow/cadence-java-client/issues/295.
15651565
}
15661566

15671567
public static class TestChildAsyncWorkflow implements TestWorkflow1 {

0 commit comments

Comments
 (0)