Skip to content
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.

Commit

Permalink
Merge pull request #143 from aclavio/develop
Browse files Browse the repository at this point in the history
Release 1.0.0
  • Loading branch information
aclavio authored Jan 14, 2021
2 parents 39f247c + a2f070d commit 2703d3a
Show file tree
Hide file tree
Showing 220 changed files with 4,710 additions and 4,236 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ build
gradle-local.properties
*.settings*
*.classpath
state-conductor-example/bin/
state-conductor-example/bin/
.DS_Store
*.jar
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ There are two sub-projects.

State-conductor-modules which contains the core library that gets built into the mlBundle redistributable.

State-conductor-example which has unit tests, as well as example flows and actions.
State-conductor-example which has unit tests, as well as example state machines and actions.

## Found an Issue?
If you find a bug in the source code or a mistake in the documentation, you can help us by submitting an issue to our [GitHub Issue Tracker][issue tracker]. Even better, you can submit a Pull Request with a fix for the issue you filed.
Expand Down Expand Up @@ -254,10 +254,10 @@ Use `git rebase` (not `git merge`) to sync your work from time to time.
$ ./gradlew -Dtest.single=TestName test
```

- For best results, do not include the final word test. For example, suppose you want to run FlowRunnerTest:
- For best results, do not include the final word test. For example, suppose you want to run StateMachineRunnerTest:

```sh
$ ./gradlew -Dtest.single=FlowRunner test
$ ./gradlew -Dtest.single=StateMachineRunner test
```

You can run the e2e tests from Visual Studio Code or another IDE to perform fullstack debugging. To do so, add a run/debug
Expand Down
143 changes: 103 additions & 40 deletions README.md

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
allprojects {
project.ext {
mlgradleVersion = "3.17.0"
springVersion = "2.3.3.RELEASE"
}

repositories {
Expand All @@ -10,5 +11,5 @@ allprojects {
}

group = "com.marklogic"
version = "0.8.0"
version = "1.0.0"
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include "state-conductor-modules", "state-conductor-cpf", "state-conductor-dataservices", "state-conductor-example", "state-conductor-dhf5-example"
include "state-conductor-modules", "state-conductor-dataservices", "state-conductor-example", "state-conductor-dhf5-example"
4 changes: 2 additions & 2 deletions state-conductor-corb-example/bin/runCorbDriver.sh
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#!/bin/bash
for (( ; ; ))
do
echo "processing jobs [ hit CTRL+C to stop]"
echo "processing executions [ hit CTRL+C to stop]"
java -server -cp .:./libs/marklogic-xcc-10.0.3.jar:./libs/marklogic-corb-2.4.6.jar -DOPTIONS-FILE=corbDriver.properties com.marklogic.developer.corb.Manager "$@"
code=$?
if [ $code -eq 0 ]
then
continue
elif [ $code -eq 3 ]
then
echo "no jobs to process, sleeping 15 seconds..."
echo "no executions to process, sleeping 15 seconds..."
sleep 15s
continue
else
Expand Down
2 changes: 0 additions & 2 deletions state-conductor-corb-example/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,3 @@ mlTestRestPort=8011
xdbcCorbPort=9006

xccConnectionUri=

installCpf=true
3 changes: 0 additions & 3 deletions state-conductor-cpf/README.md

This file was deleted.

58 changes: 0 additions & 58 deletions state-conductor-cpf/build.gradle

This file was deleted.

2 changes: 0 additions & 2 deletions state-conductor-cpf/gradle.properties

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 2703d3a

Please sign in to comment.