Skip to content

Commit 2c1d13c

Browse files
Rename workflow-host module to workflow-runtime.
`WorkflowHost` is the name of the class that is the entrypoint to the runtime, but this module actually contains the entire runtime implementation, and so I think it's a more accurate name. Inspired by #239.
1 parent c7eef54 commit 2c1d13c

20 files changed

+8
-8
lines changed

Diff for: kotlin/samples/tictactoe/android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies {
3333
implementation project(':samples:tictactoe:common')
3434
implementation project(':viewregistry-android')
3535
implementation project(':workflow-core')
36-
implementation project(':workflow-host')
36+
implementation project(':workflow-runtime')
3737

3838
implementation deps.appcompatv7
3939
implementation deps.constraint_layout

Diff for: kotlin/settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ include ':samples:tictactoe:common'
2323
include ':viewregistry-android'
2424
include ':viewregistry'
2525
include ':workflow-core'
26-
include ':workflow-host'
26+
include ':workflow-runtime'
2727
include ':workflow-rx2'
2828
include ':workflow-testing'

Diff for: kotlin/workflow-host/README.md

-3
This file was deleted.

Diff for: kotlin/workflow-runtime/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# workflow-runtime
2+
3+
This module contains the core APIs and logic for running workflows.
File renamed without changes.

Diff for: kotlin/workflow-host/gradle.properties renamed to kotlin/workflow-runtime/gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
POM_ARTIFACT_ID=workflow-host
17-
POM_NAME=Workflow Host
16+
POM_ARTIFACT_ID=workflow-runtime
17+
POM_NAME=Workflow Runtime
1818
POM_PACKAGING=jar

Diff for: kotlin/workflow-testing/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies {
3131
api project(':workflow-core')
3232
api deps.kotlin.stdLib.jdk6
3333

34-
implementation project(':workflow-host')
34+
implementation project(':workflow-runtime')
3535
implementation deps.kotlin.reflect
3636

3737
testImplementation deps.kotlin.test.jdk

0 commit comments

Comments
 (0)