mirror of
https://github.com/corda/corda.git
synced 2025-05-04 17:53:05 +00:00
Address comments #669
This commit is contained in:
parent
4cd1f1677f
commit
5e103ac91a
@ -9,8 +9,8 @@ Example usage
|
|||||||
=============
|
=============
|
||||||
|
|
||||||
```
|
```
|
||||||
./gradlew quasar-hook:jar
|
./gradlew experimental:quasar-hook:jar
|
||||||
java -javaagent:quasar-hook/build/libs/quasar-hook.jar="expand=com,de,org,co;truncate=net.corda" -jar path/to/corda.jar
|
java -javaagent:experimental/quasar-hook/build/libs/quasar-hook.jar="expand=com,de,org,co;truncate=net.corda" -jar path/to/corda.jar
|
||||||
```
|
```
|
||||||
|
|
||||||
The above will run corda.jar and on exit will print information about what classes were scanned/instrumented.
|
The above will run corda.jar and on exit will print information about what classes were scanned/instrumented.
|
@ -1,7 +1,7 @@
|
|||||||
buildscript {
|
buildscript {
|
||||||
// For sharing constants between builds
|
// For sharing constants between builds
|
||||||
Properties constants = new Properties()
|
Properties constants = new Properties()
|
||||||
file("$projectDir/../constants.properties").withInputStream { constants.load(it) }
|
file("$projectDir/../../constants.properties").withInputStream { constants.load(it) }
|
||||||
|
|
||||||
ext.kotlin_version = constants.getProperty("kotlinVersion")
|
ext.kotlin_version = constants.getProperty("kotlinVersion")
|
||||||
ext.javaassist_version = "3.12.1.GA"
|
ext.javaassist_version = "3.12.1.GA"
|
@ -17,6 +17,7 @@ include 'webserver'
|
|||||||
include 'webserver:webcapsule'
|
include 'webserver:webcapsule'
|
||||||
include 'experimental'
|
include 'experimental'
|
||||||
include 'experimental:sandbox'
|
include 'experimental:sandbox'
|
||||||
|
include 'experimental:quasar-hook'
|
||||||
include 'verifier'
|
include 'verifier'
|
||||||
include 'test-utils'
|
include 'test-utils'
|
||||||
include 'tools:explorer'
|
include 'tools:explorer'
|
||||||
@ -30,5 +31,4 @@ include 'samples:irs-demo'
|
|||||||
include 'samples:network-visualiser'
|
include 'samples:network-visualiser'
|
||||||
include 'samples:simm-valuation-demo'
|
include 'samples:simm-valuation-demo'
|
||||||
include 'samples:raft-notary-demo'
|
include 'samples:raft-notary-demo'
|
||||||
include 'samples:bank-of-corda-demo'
|
include 'samples:bank-of-corda-demo'
|
||||||
include 'quasar-hook'
|
|
Loading…
x
Reference in New Issue
Block a user