mirror of
https://github.com/corda/corda.git
synced 2025-01-11 15:32:49 +00:00
Merge pull request #442 from corda/clint-verifierpublish
Verifier is now correctly publishing
This commit is contained in:
commit
2f2d4b64b5
@ -201,7 +201,7 @@ bintrayConfig {
|
|||||||
projectUrl = 'https://github.com/corda/corda'
|
projectUrl = 'https://github.com/corda/corda'
|
||||||
gpgSign = true
|
gpgSign = true
|
||||||
gpgPassphrase = System.getenv('CORDA_BINTRAY_GPG_PASSPHRASE')
|
gpgPassphrase = System.getenv('CORDA_BINTRAY_GPG_PASSPHRASE')
|
||||||
publications = ['jfx', 'mock', 'rpc', 'core', 'corda', 'corda-webserver', 'finance', 'node', 'node-api', 'node-schemas', 'test-utils', 'jackson', 'webserver']
|
publications = ['jfx', 'mock', 'rpc', 'core', 'corda', 'corda-webserver', 'finance', 'node', 'node-api', 'node-schemas', 'test-utils', 'jackson', 'verifier', 'webserver']
|
||||||
license {
|
license {
|
||||||
name = 'Apache-2.0'
|
name = 'Apache-2.0'
|
||||||
url = 'https://www.apache.org/licenses/LICENSE-2.0'
|
url = 'https://www.apache.org/licenses/LICENSE-2.0'
|
||||||
|
@ -64,6 +64,7 @@ interface DriverDSLExposedInterface {
|
|||||||
* @param providedName Optional name of the node, which will be its legal name in [Party]. Defaults to something
|
* @param providedName Optional name of the node, which will be its legal name in [Party]. Defaults to something
|
||||||
* random. Note that this must be unique as the driver uses it as a primary key!
|
* random. Note that this must be unique as the driver uses it as a primary key!
|
||||||
* @param advertisedServices The set of services to be advertised by the node. Defaults to empty set.
|
* @param advertisedServices The set of services to be advertised by the node. Defaults to empty set.
|
||||||
|
* @param verifierType The type of transaction verifier to use. See: [VerifierType]
|
||||||
* @param rpcUsers List of users who are authorised to use the RPC system. Defaults to empty list.
|
* @param rpcUsers List of users who are authorised to use the RPC system. Defaults to empty list.
|
||||||
* @return The [NodeInfo] of the started up node retrieved from the network map service.
|
* @return The [NodeInfo] of the started up node retrieved from the network map service.
|
||||||
*/
|
*/
|
||||||
@ -79,6 +80,7 @@ interface DriverDSLExposedInterface {
|
|||||||
* @param notaryName The legal name of the advertised distributed notary service.
|
* @param notaryName The legal name of the advertised distributed notary service.
|
||||||
* @param clusterSize Number of nodes to create for the cluster.
|
* @param clusterSize Number of nodes to create for the cluster.
|
||||||
* @param type The advertised notary service type. Currently the only supported type is [RaftValidatingNotaryService.type].
|
* @param type The advertised notary service type. Currently the only supported type is [RaftValidatingNotaryService.type].
|
||||||
|
* @param verifierType The type of transaction verifier to use. See: [VerifierType]
|
||||||
* @param rpcUsers List of users who are authorised to use the RPC system. Defaults to empty list.
|
* @param rpcUsers List of users who are authorised to use the RPC system. Defaults to empty list.
|
||||||
* @return The [Party] identity of the distributed notary service, and the [NodeInfo]s of the notaries in the cluster.
|
* @return The [Party] identity of the distributed notary service, and the [NodeInfo]s of the notaries in the cluster.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user