Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CORE-20601: Rename mgm to network as README instructions are currently incorrect #242

Merged
merged 1 commit into from
May 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ These files enable you to run plugins. You can build plugins from other reposito

```
(cd .. && git clone https://github.com/corda/corda-runtime-os.git)
(cd ../corda-runtime-os && ./gradlew :tools:plugins:package:build :tools:plugins:mgm:build)
cp ../corda-runtime-os/tools/plugins/package/build/libs/package-cli-plugin-*.jar ../corda-runtime-os/tools/plugins/mgm/build/libs/mgm-cli*.jar build/plugins/
(cd ../corda-runtime-os && ./gradlew :tools:plugins:package:build :tools:plugins:network:build)
cp ../corda-runtime-os/tools/plugins/package/build/libs/package-cli-plugin-*.jar ../corda-runtime-os/tools/plugins/network/build/libs/network-cli*.jar build/plugins/
```

## Running the CLI Script
Expand All @@ -25,10 +25,10 @@ The `build/generatedScripts` directory contains a windows cmd and shell command

## Plugins

Refer to the detailed documemntation for each plugin:
Refer to the detailed documentation for each plugin:

* [mgm plugin README.md](https://github.com/corda/corda-runtime-os/tree/release/os/5.0/tools/plugins/mgm) for generating group policy files which are required to make CPIs, which are required to run a CorDapp.
* [package plugin README.md](https://github.com/corda/corda-runtime-os/tree/release/os/5.0/tools/plugins/package) for generating CPB and CPI files
* [network plugin README.md](https://github.com/corda/corda-runtime-os/tree/release/os/5.3/tools/plugins/network) for generating group policy files which are required to make CPIs, which are required to run a CorDapp.
* [package plugin README.md](https://github.com/corda/corda-runtime-os/tree/release/os/5.3/tools/plugins/package) for generating CPB and CPI files

### Example Plugin

Expand Down