Fix asset-transfer-events sample Java chaincode (#782)

- chaincode-java Gradle project name did not match the instructions or the chaincode name used by the sample application code.
- Added test of Java chaincode to CI pipeline.

Signed-off-by: Mark S. Lewis <mark_lewis@uk.ibm.com>
This commit is contained in:
Mark S. Lewis 2022-07-01 12:28:52 +01:00 committed by GitHub
parent f8e7bfe803
commit 12f59398ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -2,4 +2,4 @@
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: Apache-2.0
*/ */
rootProject.name = 'asset-transfer-events-java' rootProject.name = 'events'

View file

@ -228,6 +228,9 @@ jobs:
Events-Javascript: Events-Javascript:
CHAINCODE_NAME: events CHAINCODE_NAME: events
CHAINCODE_LANGUAGE: javascript CHAINCODE_LANGUAGE: javascript
Events-Java:
CHAINCODE_NAME: events
CHAINCODE_LANGUAGE: java
steps: steps:
- template: templates/install-deps.yml - template: templates/install-deps.yml
- script: ../ci/scripts/run-test-network-events.sh - script: ../ci/scripts/run-test-network-events.sh