[NOTICK] Delete files from master

Delete remaining files from master.
This commit is contained in:
Jonathan Locke 2019-09-05 10:16:16 +01:00
parent c4cc6e82d0
commit 3d0197acd7
20 changed files with 0 additions and 9926 deletions

View File

@ -1,11 +0,0 @@
# !! DO NOT MODIFY THE API FILE IN THIS DIRECTORY !!
The `api-current.txt` file contains a summary of Corda's current public APIs,
as generated by the `api-scanner` Gradle plugin. (See [here](https://github.com/corda/corda-gradle-plugins/blob/master/api-scanner/README.md) for a detailed description of this plugin.) It will be regenerated and the copy in this repository updated by the Release Manager with
each new Corda release. It will not be modified otherwise except under special circumstances that will require extra approval.
Deleting or changing the existing Corda APIs listed in `api-current.txt` may
break developers' CorDapps in the next Corda release! Please remember that we
have committed to API Stability for CorDapps.
# !! DO NOT MODIFY THE API FILE IN THIS DIRECTORY !!

File diff suppressed because it is too large Load Diff

View File

@ -1,81 +0,0 @@
#!/bin/bash
set +o posix
echo "Starting API Diff"
APIHOME=$(dirname $0)
apiCurrent=$APIHOME/api-current.txt
if [ ! -f $apiCurrent ]; then
echo "Missing $apiCurrent file - cannot check API diff. Please rebase or add it to this release"
exit -1
fi
# Remove the two header lines from the diff output.
diffContents=`diff --minimal -u $apiCurrent $APIHOME/../build/api/api-corda-*.txt | tail -n +3`
echo "Diff contents:"
echo "$diffContents"
echo
# A removed line means that an API was either deleted or modified.
removals=$(echo "$diffContents" | grep "^-")
removalCount=`grep -v "^$" <<EOF | wc -l
$removals
EOF
`
echo "Number of API removals/changes: "$removalCount
if [ $removalCount -gt 0 ]; then
echo "$removals"
echo
fi
# Adding new abstract methods could also break the API.
# However, first exclude classes marked with the @DoNotImplement annotation
function forUserImpl() {
awk '/DoNotImplement/,/^##/{ next }{ print }' $1
}
userDiffContents=`diff -u <(forUserImpl $apiCurrent) <(forUserImpl $APIHOME/../build/api/api-corda-*.txt) | tail -n +3`
newAbstracts=$(echo "$userDiffContents" | grep "^+" | grep "\(public\|protected\) abstract")
abstractCount=`grep -v "^$" <<EOF | wc -l
$newAbstracts
EOF
`
# Get a list of any methods that expose internal classes, which includes:
# - classes in .internal. namespaces (excluding the kotlin.jvm.internal namespace)
# - classes which extend/implement an internal class (see above)
# - classes in the net.corda.node. namespace
#TODO: check that only classes in a whitelist are part of the API rather than look for specific invalid cases going forward
newInternalExposures=$(echo "$userDiffContents" | grep "^+" | grep "(?<!kotlin\.jvm)\.internal\." )
newNodeExposures=$(echo "$userDiffContents" | grep "^+" | grep "net\.corda\.node\.")
internalCount=`grep -v "^$" <<EOF | wc -l
$newInternalExposures
$newNodeExposures
EOF
`
echo "Number of new internal class exposures: "$internalCount
if [ $internalCount -gt 0 ]; then
echo "$newInternalExposures"
echo "$newNodeExposures"
echo
fi
echo "Number of new abstract APIs: "$abstractCount
if [ $abstractCount -gt 0 ]; then
echo "$newAbstracts"
echo
fi
badChanges=$(($removalCount + $abstractCount + $internalCount))
if [ $badChanges -gt 255 ]; then
echo "OVERFLOW! Number of bad API changes: $badChanges"
badChanges=255
fi
echo "Exiting with exit code" $badChanges
exit $badChanges

View File

@ -1,9 +0,0 @@
#!/bin/bash
export GRADLE_BUILD_CACHE_URL="${GRADLE_BUILD_CACHE_URL:-http://localhost:5071/cache/}"
export USE_GRADLE_DAEMON="${USE_GRADLE_DAEMON:-false}"
export GRADLE_CACHE_DEBUG="${GRADLE_CACHE_DEBUG:-false}"
export PERFORM_GRADLE_SCAN="${PERFORM_GRADLE_SCAN:---scan}"
# cd %teamcity.build.checkoutDir%
echo "Using Gradle Build Cache: $GRADLE_BUILD_CACHE_URL"

View File

@ -1,31 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.1.xsd">
<!-- Example of a suppressed library -->
<!-- The suppress node can be generated from the HTML report by using the 'suppress' option for each vulnerability found
<suppress>
<notes><![CDATA[
file name: some.jar
]]></notes>
<sha1>66734244CE86857018B023A8C56AE0635C56B6A1</sha1>
<cpe>cpe:/a:apache:struts:2.0.0</cpe>
</suppress>
-->
<suppress>
<!-- Vulnerability when using SSLv2 Hello messages. Corda uses TLS1.2-->
<notes><![CDATA[file name: catalyst-netty-1.1.2.jar]]></notes>
<gav regex="true">^io\.atomix\.catalyst:catalyst-netty:.*$</gav>
<cve>CVE-2014-3488</cve>
</suppress>
<suppress>
<!-- Vulnerability to LDAP poisoning attacks. Corda doesn't use LDAP-->
<notes><![CDATA[file name: groovy-all-1.8.9.jar]]></notes>
<gav regex="true">^commons-cli:commons-cli:.*$</gav>
<cve>CVE-2016-6497</cve>
</suppress>
<suppress>
<!-- Java objects serialization disabled in Corda -->
<notes><![CDATA[file name: groovy-all-1.8.9.jar]]></notes>
<gav regex="true">^commons-cli:commons-cli:.*$</gav>
<cve>CVE-2015-3253</cve>
</suppress>
</suppressions>

View File

@ -1,14 +0,0 @@
@echo off
REM Setlocal EnableDelayedExpansion
FOR /F "tokens=1,2 delims= " %%G IN ('jps -l') DO (call :sub %%H %%G)
goto :eof
:sub
IF %1==net.corda.webserver.WebServer taskkill /F /PID %2
IF %1==net.corda.node.Corda taskkill /F /PID %2
IF %1==corda.jar taskkill /F /PID %2
IF %1==corda-webserver.jar taskkill /F /PID %2
IF %1==org.gradle.launcher.daemon.bootstrap.GradleDaemon taskkill /F /PID %2
goto :eof

View File

@ -1,8 +0,0 @@
Thank you for choosing to report an issue with Corda.
When reporting an issue please make sure it contains;
* A clear description of the issue
* Any logs or stack traces that you can provide (use a site like https://pastebin.com for larger logs)
* Steps to reproduce the issue
* The version/tag/release or commit hash it occurred on

View File

@ -1,11 +0,0 @@
👮🏻👮🏻👮🏻 !!!! DESCRIBE YOUR CHANGES HERE !!!! DO NOT FORGET !!!! 👮🏻👮🏻👮🏻
# PR Checklist:
- [ ] Have you run the unit, integration and smoke tests as described [here](https://docs.corda.net/head/testing.html)?
- [ ] If you added public APIs, did you write the JavaDocs?
- [ ] If the changes are of interest to application developers, have you added them to the [changelog](https://github.com/corda/corda/blob/master/docs/source/changelog.rst), and potentially the [release notes](https://github.com/corda/corda/blob/master/docs/source/release-notes.rst)?
- [ ] If you are contributing for the first time, please read the agreement in [CONTRIBUTING.md](https://github.com/corda/corda/blob/master/CONTRIBUTING.md) now and add a comment to this pull request stating that your PR is in accordance with the [Developer's Certificate of Origin](https://github.com/corda/corda/blob/master/CONTRIBUTING.md#developer-certificate-of-origin).
Thanks for your code, it's appreciated! :)

View File

@ -1,19 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectCodeStyleSettingsManager">
<option name="PER_PROJECT_SETTINGS">
<value>
<JetCodeStyleSettings>
<option name="PACKAGES_TO_USE_STAR_IMPORTS">
<value>
<package name="java.util" withSubpackages="false" static="false" />
<package name="kotlinx.android.synthetic" withSubpackages="true" static="false" />
<package name="tornadofx" withSubpackages="false" static="false" />
</value>
</option>
</JetCodeStyleSettings>
</value>
</option>
<option name="USE_PER_PROJECT_SETTINGS" value="true" />
</component>
</project>

View File

@ -1,43 +0,0 @@
<component name="ProjectCodeStyleConfiguration">
<code_scheme name="Project" version="173">
<option name="LINE_SEPARATOR" value="&#10;" />
<option name="RIGHT_MARGIN" value="140" />
<option name="SOFT_MARGINS" value="140" />
<JetCodeStyleSettings>
<option name="PACKAGES_TO_USE_STAR_IMPORTS">
<value>
<package name="java.util" withSubpackages="false" static="false" />
<package name="kotlinx.android.synthetic" withSubpackages="true" static="false" />
<package name="tornadofx" withSubpackages="false" static="false" />
</value>
</option>
<option name="CONTINUATION_INDENT_IN_PARAMETER_LISTS" value="true" />
<option name="CONTINUATION_INDENT_IN_ARGUMENT_LISTS" value="true" />
<option name="CONTINUATION_INDENT_FOR_EXPRESSION_BODIES" value="true" />
<option name="CONTINUATION_INDENT_FOR_CHAINED_CALLS" value="true" />
<option name="CONTINUATION_INDENT_IN_SUPERTYPE_LISTS" value="true" />
<option name="CONTINUATION_INDENT_IN_IF_CONDITIONS" value="true" />
<option name="CONTINUATION_INDENT_IN_ELVIS" value="true" />
<option name="WRAP_EXPRESSION_BODY_FUNCTIONS" value="0" />
<option name="IF_RPAREN_ON_NEW_LINE" value="false" />
<option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
</JetCodeStyleSettings>
<editorconfig>
<option name="ENABLED" value="false" />
</editorconfig>
<codeStyleSettings language="kotlin">
<option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
<option name="KEEP_BLANK_LINES_IN_DECLARATIONS" value="1" />
<option name="KEEP_BLANK_LINES_IN_CODE" value="1" />
<option name="KEEP_BLANK_LINES_BEFORE_RBRACE" value="0" />
<option name="CALL_PARAMETERS_WRAP" value="0" />
<option name="CALL_PARAMETERS_LPAREN_ON_NEXT_LINE" value="false" />
<option name="CALL_PARAMETERS_RPAREN_ON_NEXT_LINE" value="false" />
<option name="METHOD_PARAMETERS_WRAP" value="0" />
<option name="METHOD_PARAMETERS_LPAREN_ON_NEXT_LINE" value="false" />
<option name="METHOD_PARAMETERS_RPAREN_ON_NEXT_LINE" value="false" />
<option name="EXTENDS_LIST_WRAP" value="0" />
<option name="ASSIGNMENT_WRAP" value="0" />
</codeStyleSettings>
</code_scheme>
</component>

View File

@ -1,6 +0,0 @@
<component name="ProjectCodeStyleConfiguration">
<state>
<option name="USE_PER_PROJECT_SETTINGS" value="true" />
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
</state>
</component>

677
.idea/compiler.xml generated
View File

@ -1,677 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<bytecodeTargetLevel target="1.8">
<module name="api-scanner_main" target="1.8" />
<module name="api-scanner_test" target="1.8" />
<module name="attachment-demo-contracts_main" target="1.8" />
<module name="attachment-demo-contracts_test" target="1.8" />
<module name="attachment-demo-workflows_integrationTest" target="1.8" />
<module name="attachment-demo-workflows_main" target="1.8" />
<module name="attachment-demo-workflows_test" target="1.8" />
<module name="attachment-demo_integrationTest" target="1.8" />
<module name="attachment-demo_main" target="1.8" />
<module name="attachment-demo_test" target="1.8" />
<module name="avalanche_main" target="1.8" />
<module name="avalanche_test" target="1.8" />
<module name="bank-of-corda-demo_integrationTest" target="1.8" />
<module name="bank-of-corda-demo_main" target="1.8" />
<module name="bank-of-corda-demo_test" target="1.8" />
<module name="behave_behave" target="1.8" />
<module name="behave_main" target="1.8" />
<module name="behave_scenario" target="1.8" />
<module name="behave_test" target="1.8" />
<module name="blobinspector_main" target="1.8" />
<module name="blobinspector_test" target="1.8" />
<module name="blobwriter_main" target="1.8" />
<module name="blobwriter_test" target="1.8" />
<module name="bootstrapper_main" target="1.8" />
<module name="bootstrapper_test" target="1.8" />
<module name="buildSrc_main" target="1.8" />
<module name="buildSrc_test" target="1.8" />
<module name="canonicalizer_main" target="1.8" />
<module name="canonicalizer_test" target="1.8" />
<module name="capsule.net.corda.capsule.main" target="1.6" />
<module name="capsule.net.corda.capsule.test" target="1.6" />
<module name="checkpoint-agent_main" target="1.8" />
<module name="checkpoint-agent_test" target="1.8" />
<module name="cli_main" target="1.8" />
<module name="cli_test" target="1.8" />
<module name="client_main" target="1.8" />
<module name="client_test" target="1.8" />
<module name="cliutils_main" target="1.8" />
<module name="cliutils_test" target="1.8" />
<module name="com.r3cev.prototyping.experimental.main" target="1.8" />
<module name="com.r3cev.prototyping.experimental.test" target="1.8" />
<module name="common-configuration-parsing_main" target="1.8" />
<module name="common-configuration-parsing_test" target="1.8" />
<module name="common-logging_main" target="1.8" />
<module name="common-logging_test" target="1.8" />
<module name="common-validation_main" target="1.8" />
<module name="common-validation_test" target="1.8" />
<module name="confidential-identities_main" target="1.8" />
<module name="confidential-identities_test" target="1.8" />
<module name="contracts-irs_main" target="1.8" />
<module name="contracts-irs_test" target="1.8" />
<module name="contracts-states_integrationTest" target="1.8" />
<module name="contracts-states_main" target="1.8" />
<module name="contracts-states_test" target="1.8" />
<module name="contracts.net.corda.contracts.main" target="1.8" />
<module name="contracts.net.corda.contracts.test" target="1.8" />
<module name="contracts_main" target="1.8" />
<module name="contracts_test" target="1.8" />
<module name="corda-core_integrationTest" target="1.8" />
<module name="corda-core_smokeTest" target="1.8" />
<module name="corda-finance_integrationTest" target="1.8" />
<module name="corda-isolated_main" target="1.8" />
<module name="corda-isolated_test" target="1.8" />
<module name="corda-project.buildSrc.main" target="1.8" />
<module name="corda-project.buildSrc.test" target="1.8" />
<module name="corda-project.client.jackson.main" target="1.8" />
<module name="corda-project.client.jackson.test" target="1.8" />
<module name="corda-project.client.jfx.integrationTest" target="1.8" />
<module name="corda-project.client.jfx.main" target="1.8" />
<module name="corda-project.client.jfx.test" target="1.8" />
<module name="corda-project.client.main" target="1.8" />
<module name="corda-project.client.mock.main" target="1.8" />
<module name="corda-project.client.mock.test" target="1.8" />
<module name="corda-project.client.rpc.integrationTest" target="1.8" />
<module name="corda-project.client.rpc.main" target="1.8" />
<module name="corda-project.client.rpc.smokeTest" target="1.8" />
<module name="corda-project.client.rpc.test" target="1.8" />
<module name="corda-project.client.test" target="1.8" />
<module name="corda-project.common-configuration-parsing.main" target="1.8" />
<module name="corda-project.common-configuration-parsing.test" target="1.8" />
<module name="corda-project.common-logging.main" target="1.8" />
<module name="corda-project.common-logging.test" target="1.8" />
<module name="corda-project.common-validation.main" target="1.8" />
<module name="corda-project.common-validation.test" target="1.8" />
<module name="corda-project.confidential-identities.main" target="1.8" />
<module name="corda-project.confidential-identities.test" target="1.8" />
<module name="corda-project.core-deterministic.main" target="1.8" />
<module name="corda-project.core-deterministic.test" target="1.8" />
<module name="corda-project.core-deterministic.testing.data.main" target="1.8" />
<module name="corda-project.core-deterministic.testing.data.test" target="1.8" />
<module name="corda-project.core-deterministic.testing.main" target="1.8" />
<module name="corda-project.core-deterministic.testing.test" target="1.8" />
<module name="corda-project.core-deterministic.testing.verifier.main" target="1.8" />
<module name="corda-project.core-deterministic.testing.verifier.test" target="1.8" />
<module name="corda-project.core-tests.integrationTest" target="1.8" />
<module name="corda-project.core-tests.main" target="1.8" />
<module name="corda-project.core-tests.smokeTest" target="1.8" />
<module name="corda-project.core-tests.test" target="1.8" />
<module name="corda-project.core.integrationTest" target="1.8" />
<module name="corda-project.core.main" target="1.8" />
<module name="corda-project.core.smokeTest" target="1.8" />
<module name="corda-project.core.test" target="1.8" />
<module name="corda-project.docker.main" target="1.8" />
<module name="corda-project.docker.test" target="1.8" />
<module name="corda-project.docs.main" target="1.8" />
<module name="corda-project.docs.test" target="1.8" />
<module name="corda-project.example-code.integrationTest" target="1.8" />
<module name="corda-project.example-code.main" target="1.8" />
<module name="corda-project.example-code.test" target="1.8" />
<module name="corda-project.experimental.avalanche.main" target="1.8" />
<module name="corda-project.experimental.avalanche.test" target="1.8" />
<module name="corda-project.experimental.corda-utils.integrationTest" target="1.8" />
<module name="corda-project.experimental.corda-utils.main" target="1.8" />
<module name="corda-project.experimental.corda-utils.test" target="1.8" />
<module name="corda-project.experimental.main" target="1.8" />
<module name="corda-project.experimental.netparams.main" target="1.8" />
<module name="corda-project.experimental.netparams.test" target="1.8" />
<module name="corda-project.experimental.nodeinfo.main" target="1.8" />
<module name="corda-project.experimental.nodeinfo.test" target="1.8" />
<module name="corda-project.experimental.quasar-hook.main" target="1.8" />
<module name="corda-project.experimental.quasar-hook.test" target="1.8" />
<module name="corda-project.experimental.test" target="1.8" />
<module name="corda-project.finance.contracts.main" target="1.8" />
<module name="corda-project.finance.contracts.test" target="1.8" />
<module name="corda-project.finance.main" target="1.8" />
<module name="corda-project.finance.test" target="1.8" />
<module name="corda-project.finance.workflows.integrationTest" target="1.8" />
<module name="corda-project.finance.workflows.main" target="1.8" />
<module name="corda-project.finance.workflows.test" target="1.8" />
<module name="corda-project.isolated.main" target="1.8" />
<module name="corda-project.isolated.test" target="1.8" />
<module name="corda-project.jdk8u-deterministic.main" target="1.8" />
<module name="corda-project.jdk8u-deterministic.test" target="1.8" />
<module name="corda-project.node-api.main" target="1.8" />
<module name="corda-project.node-api.test" target="1.8" />
<module name="corda-project.node-driver.integrationTest" target="1.8" />
<module name="corda-project.node-driver.main" target="1.8" />
<module name="corda-project.node-driver.test" target="1.8" />
<module name="corda-project.node.capsule.main" target="1.8" />
<module name="corda-project.node.capsule.test" target="1.8" />
<module name="corda-project.node.integrationTest" target="1.8" />
<module name="corda-project.node.main" target="1.8" />
<module name="corda-project.node.test" target="1.8" />
<module name="corda-project.samples.attachment-demo.contracts.main" target="1.8" />
<module name="corda-project.samples.attachment-demo.contracts.test" target="1.8" />
<module name="corda-project.samples.attachment-demo.integrationTest" target="1.8" />
<module name="corda-project.samples.attachment-demo.main" target="1.8" />
<module name="corda-project.samples.attachment-demo.test" target="1.8" />
<module name="corda-project.samples.attachment-demo.workflows.main" target="1.8" />
<module name="corda-project.samples.attachment-demo.workflows.test" target="1.8" />
<module name="corda-project.samples.bank-of-corda-demo.main" target="1.8" />
<module name="corda-project.samples.bank-of-corda-demo.test" target="1.8" />
<module name="corda-project.samples.cordapp-configuration.main" target="1.8" />
<module name="corda-project.samples.cordapp-configuration.test" target="1.8" />
<module name="corda-project.samples.cordapp-configuration.workflows.main" target="1.8" />
<module name="corda-project.samples.cordapp-configuration.workflows.test" target="1.8" />
<module name="corda-project.samples.irs-demo.cordapp.contracts-irs.main" target="1.8" />
<module name="corda-project.samples.irs-demo.cordapp.contracts-irs.test" target="1.8" />
<module name="corda-project.samples.irs-demo.cordapp.integrationTest" target="1.8" />
<module name="corda-project.samples.irs-demo.cordapp.main" target="1.8" />
<module name="corda-project.samples.irs-demo.cordapp.test" target="1.8" />
<module name="corda-project.samples.irs-demo.cordapp.workflows-irs.main" target="1.8" />
<module name="corda-project.samples.irs-demo.cordapp.workflows-irs.test" target="1.8" />
<module name="corda-project.samples.irs-demo.integrationTest" target="1.8" />
<module name="corda-project.samples.irs-demo.main" target="1.8" />
<module name="corda-project.samples.irs-demo.systemTest" target="1.8" />
<module name="corda-project.samples.irs-demo.test" target="1.8" />
<module name="corda-project.samples.irs-demo.web.main" target="1.8" />
<module name="corda-project.samples.irs-demo.web.test" target="1.8" />
<module name="corda-project.samples.main" target="1.8" />
<module name="corda-project.samples.network-verifier.contracts.main" target="1.8" />
<module name="corda-project.samples.network-verifier.contracts.test" target="1.8" />
<module name="corda-project.samples.network-verifier.main" target="1.8" />
<module name="corda-project.samples.network-verifier.test" target="1.8" />
<module name="corda-project.samples.network-verifier.workflows.main" target="1.8" />
<module name="corda-project.samples.network-verifier.workflows.test" target="1.8" />
<module name="corda-project.samples.notary-demo.contracts.main" target="1.8" />
<module name="corda-project.samples.notary-demo.contracts.test" target="1.8" />
<module name="corda-project.samples.notary-demo.main" target="1.8" />
<module name="corda-project.samples.notary-demo.test" target="1.8" />
<module name="corda-project.samples.notary-demo.workflows.main" target="1.8" />
<module name="corda-project.samples.notary-demo.workflows.test" target="1.8" />
<module name="corda-project.samples.simm-valuation-demo.contracts-states.main" target="1.8" />
<module name="corda-project.samples.simm-valuation-demo.contracts-states.test" target="1.8" />
<module name="corda-project.samples.simm-valuation-demo.flows.main" target="1.8" />
<module name="corda-project.samples.simm-valuation-demo.flows.test" target="1.8" />
<module name="corda-project.samples.simm-valuation-demo.integrationTest" target="1.8" />
<module name="corda-project.samples.simm-valuation-demo.main" target="1.8" />
<module name="corda-project.samples.simm-valuation-demo.test" target="1.8" />
<module name="corda-project.samples.test" target="1.8" />
<module name="corda-project.samples.trader-demo.integrationTest" target="1.8" />
<module name="corda-project.samples.trader-demo.main" target="1.8" />
<module name="corda-project.samples.trader-demo.test" target="1.8" />
<module name="corda-project.samples.trader-demo.workflows-trader.main" target="1.8" />
<module name="corda-project.samples.trader-demo.workflows-trader.test" target="1.8" />
<module name="corda-project.serialization-deterministic.main" target="1.8" />
<module name="corda-project.serialization-deterministic.test" target="1.8" />
<module name="corda-project.serialization.main" target="1.8" />
<module name="corda-project.serialization.test" target="1.8" />
<module name="corda-project.smoke-test-utils.main" target="1.8" />
<module name="corda-project.smoke-test-utils.test" target="1.8" />
<module name="corda-project.test-cli.main" target="1.8" />
<module name="corda-project.test-cli.test" target="1.8" />
<module name="corda-project.test-common.main" target="1.8" />
<module name="corda-project.test-common.test" target="1.8" />
<module name="corda-project.test-db.main" target="1.8" />
<module name="corda-project.test-db.test" target="1.8" />
<module name="corda-project.test-utils.main" target="1.8" />
<module name="corda-project.test-utils.test" target="1.8" />
<module name="corda-project.tools.blobinspector.main" target="1.8" />
<module name="corda-project.tools.blobinspector.test" target="1.8" />
<module name="corda-project.tools.bootstrapper.main" target="1.8" />
<module name="corda-project.tools.bootstrapper.test" target="1.8" />
<module name="corda-project.tools.cliutils.main" target="1.8" />
<module name="corda-project.tools.cliutils.test" target="1.8" />
<module name="corda-project.tools.demobench.main" target="1.8" />
<module name="corda-project.tools.demobench.test" target="1.8" />
<module name="corda-project.tools.explorer.capsule.main" target="1.6" />
<module name="corda-project.tools.explorer.capsule.test" target="1.6" />
<module name="corda-project.tools.explorer.main" target="1.8" />
<module name="corda-project.tools.explorer.test" target="1.8" />
<module name="corda-project.tools.graphs.main" target="1.8" />
<module name="corda-project.tools.graphs.test" target="1.8" />
<module name="corda-project.tools.loadtest.main" target="1.8" />
<module name="corda-project.tools.loadtest.test" target="1.8" />
<module name="corda-project.tools.main" target="1.8" />
<module name="corda-project.tools.network-bootstrapper.main" target="1.8" />
<module name="corda-project.tools.network-bootstrapper.test" target="1.8" />
<module name="corda-project.tools.shell-cli.main" target="1.8" />
<module name="corda-project.tools.shell-cli.test" target="1.8" />
<module name="corda-project.tools.shell.integrationTest" target="1.8" />
<module name="corda-project.tools.shell.main" target="1.8" />
<module name="corda-project.tools.shell.test" target="1.8" />
<module name="corda-project.tools.test" target="1.8" />
<module name="corda-project.tools.worldmap.main" target="1.8" />
<module name="corda-project.tools.worldmap.test" target="1.8" />
<module name="corda-project.webserver.integrationTest" target="1.8" />
<module name="corda-project.webserver.main" target="1.8" />
<module name="corda-project.webserver.test" target="1.8" />
<module name="corda-project.webserver.webcapsule.main" target="1.6" />
<module name="corda-project.webserver.webcapsule.test" target="1.6" />
<module name="corda-project_buildSrc_main" target="1.8" />
<module name="corda-project_buildSrc_test" target="1.8" />
<module name="corda-project_canonicalizer_main" target="1.8" />
<module name="corda-project_canonicalizer_test" target="1.8" />
<module name="corda-project_main" target="1.8" />
<module name="corda-project_test" target="1.8" />
<module name="corda-smoke-test-utils_main" target="1.8" />
<module name="corda-smoke-test-utils_test" target="1.8" />
<module name="corda-test-common_main" target="1.8" />
<module name="corda-test-common_test" target="1.8" />
<module name="corda-test-utils_main" target="1.8" />
<module name="corda-test-utils_test" target="1.8" />
<module name="corda-utils_integrationTest" target="1.8" />
<module name="corda-utils_main" target="1.8" />
<module name="corda-utils_test" target="1.8" />
<module name="corda-webserver_integrationTest" target="1.8" />
<module name="corda-webserver_main" target="1.8" />
<module name="corda-webserver_test" target="1.8" />
<module name="cordapp-configuration-workflows_main" target="1.8" />
<module name="cordapp-configuration-workflows_test" target="1.8" />
<module name="cordapp-configuration.workflows.net.corda.workflows.main" target="1.8" />
<module name="cordapp-configuration.workflows.net.corda.workflows.test" target="1.8" />
<module name="cordapp-configuration_main" target="1.8" />
<module name="cordapp-configuration_test" target="1.8" />
<module name="cordapp_integrationTest" target="1.8" />
<module name="cordapp_main" target="1.8" />
<module name="cordapp_test" target="1.8" />
<module name="cordform-common_main" target="1.8" />
<module name="cordform-common_test" target="1.8" />
<module name="cordformation_main" target="1.8" />
<module name="cordformation_runnodes" target="1.8" />
<module name="cordformation_test" target="1.8" />
<module name="core-deterministic_main" target="1.8" />
<module name="core-deterministic_test" target="1.8" />
<module name="core-tests_integrationTest" target="1.8" />
<module name="core-tests_main" target="1.8" />
<module name="core-tests_smokeTest" target="1.8" />
<module name="core-tests_test" target="1.8" />
<module name="core_extraResource" target="1.8" />
<module name="core_integrationTest" target="1.8" />
<module name="core_main" target="1.8" />
<module name="core_smokeTest" target="1.8" />
<module name="core_test" target="1.8" />
<module name="data_main" target="1.8" />
<module name="data_test" target="1.8" />
<module name="demobench_main" target="1.8" />
<module name="demobench_test" target="1.8" />
<module name="djvm_main" target="1.8" />
<module name="djvm_test" target="1.8" />
<module name="docker_main" target="1.8" />
<module name="docker_test" target="1.8" />
<module name="docs_main" target="1.8" />
<module name="docs_source_example-code_integrationTest" target="1.8" />
<module name="docs_source_example-code_main" target="1.8" />
<module name="docs_source_example-code_test" target="1.8" />
<module name="docs_test" target="1.8" />
<module name="example-code_integrationTest" target="1.8" />
<module name="example-code_main" target="1.8" />
<module name="example-code_test" target="1.8" />
<module name="experimental-behave_behave" target="1.8" />
<module name="experimental-behave_main" target="1.8" />
<module name="experimental-behave_test" target="1.8" />
<module name="experimental-kryo-hook_main" target="1.8" />
<module name="experimental-kryo-hook_test" target="1.8" />
<module name="experimental_main" target="1.8" />
<module name="experimental_test" target="1.8" />
<module name="explorer-capsule_main" target="1.6" />
<module name="explorer-capsule_test" target="1.6" />
<module name="explorer_main" target="1.8" />
<module name="explorer_test" target="1.8" />
<module name="finance-contracts-states_main" target="1.8" />
<module name="finance-contracts-states_test" target="1.8" />
<module name="finance-contracts_main" target="1.8" />
<module name="finance-contracts_test" target="1.8" />
<module name="finance-flows_integrationTest" target="1.8" />
<module name="finance-flows_main" target="1.8" />
<module name="finance-flows_test" target="1.8" />
<module name="finance-workflows_integrationTest" target="1.8" />
<module name="finance-workflows_main" target="1.8" />
<module name="finance-workflows_test" target="1.8" />
<module name="finance_integrationTest" target="1.8" />
<module name="finance_main" target="1.8" />
<module name="finance_test" target="1.8" />
<module name="flows_integrationTest" target="1.8" />
<module name="flows_main" target="1.8" />
<module name="flows_test" target="1.8" />
<module name="gradle-plugins-cordapp_main" target="1.8" />
<module name="gradle-plugins-cordapp_test" target="1.8" />
<module name="graphs_main" target="1.8" />
<module name="graphs_test" target="1.8" />
<module name="irs-demo-cordapp_integrationTest" target="1.8" />
<module name="irs-demo-cordapp_main" target="1.8" />
<module name="irs-demo-cordapp_main~1" target="1.8" />
<module name="irs-demo-cordapp_test" target="1.8" />
<module name="irs-demo-cordapp_test~1" target="1.8" />
<module name="irs-demo-web_main" target="1.8" />
<module name="irs-demo-web_test" target="1.8" />
<module name="irs-demo_integrationTest" target="1.8" />
<module name="irs-demo_main" target="1.8" />
<module name="irs-demo_systemTest" target="1.8" />
<module name="irs-demo_test" target="1.8" />
<module name="isolated_main" target="1.8" />
<module name="isolated_test" target="1.8" />
<module name="jackson_main" target="1.8" />
<module name="jackson_test" target="1.8" />
<module name="jarfilter_main" target="1.8" />
<module name="jarfilter_test" target="1.8" />
<module name="jdk8u-deterministic_main" target="1.8" />
<module name="jdk8u-deterministic_test" target="1.8" />
<module name="jfx_integrationTest" target="1.8" />
<module name="jfx_main" target="1.8" />
<module name="jfx_test" target="1.8" />
<module name="kryo-hook_main" target="1.8" />
<module name="kryo-hook_test" target="1.8" />
<module name="loadtest_main" target="1.8" />
<module name="loadtest_test" target="1.8" />
<module name="mock_main" target="1.8" />
<module name="mock_test" target="1.8" />
<module name="net.corda-blobinspector_main" target="1.8" />
<module name="net.corda-blobinspector_test" target="1.8" />
<module name="net.corda-finance-contracts-states_main" target="1.8" />
<module name="net.corda-finance-contracts-states_test" target="1.8" />
<module name="net.corda-isolated_main" target="1.8" />
<module name="net.corda-isolated_test" target="1.8" />
<module name="net.corda-verifier_main" target="1.8" />
<module name="net.corda-verifier_test" target="1.8" />
<module name="net.corda.attachment-demo.integrationTest" target="1.8" />
<module name="net.corda.attachment-demo.main" target="1.8" />
<module name="net.corda.attachment-demo.test" target="1.8" />
<module name="net.corda.avalanche.main" target="1.8" />
<module name="net.corda.avalanche.test" target="1.8" />
<module name="net.corda.bank-of-corda-demo.main" target="1.8" />
<module name="net.corda.bank-of-corda-demo.test" target="1.8" />
<module name="net.corda.blobinspector.main" target="1.8" />
<module name="net.corda.blobinspector.test" target="1.8" />
<module name="net.corda.bootstrapper.main" target="1.8" />
<module name="net.corda.bootstrapper.test" target="1.8" />
<module name="net.corda.buildSrc.main" target="1.8" />
<module name="net.corda.buildSrc.test" target="1.8" />
<module name="net.corda.capsule.main" target="1.8" />
<module name="net.corda.capsule.test" target="1.8" />
<module name="net.corda.checkpoint-agent.main" target="1.8" />
<module name="net.corda.checkpoint-agent.test" target="1.8" />
<module name="net.corda.client.main" target="1.8" />
<module name="net.corda.client.test" target="1.8" />
<module name="net.corda.cliutils.main" target="1.8" />
<module name="net.corda.cliutils.test" target="1.8" />
<module name="net.corda.common-configuration-parsing.main" target="1.8" />
<module name="net.corda.common-configuration-parsing.test" target="1.8" />
<module name="net.corda.common-logging.main" target="1.8" />
<module name="net.corda.common-logging.test" target="1.8" />
<module name="net.corda.common-validation.main" target="1.8" />
<module name="net.corda.common-validation.test" target="1.8" />
<module name="net.corda.confidential-identities.main" target="1.8" />
<module name="net.corda.confidential-identities.test" target="1.8" />
<module name="net.corda.contracts-irs.main" target="1.8" />
<module name="net.corda.contracts-irs.test" target="1.8" />
<module name="net.corda.contracts-states.main" target="1.8" />
<module name="net.corda.contracts-states.test" target="1.8" />
<module name="net.corda.contracts.main" target="1.8" />
<module name="net.corda.contracts.test" target="1.8" />
<module name="net.corda.corda-project.main" target="1.8" />
<module name="net.corda.corda-project.test" target="1.8" />
<module name="net.corda.corda-utils.integrationTest" target="1.8" />
<module name="net.corda.corda-utils.main" target="1.8" />
<module name="net.corda.corda-utils.test" target="1.8" />
<module name="net.corda.cordapp-configuration.main" target="1.8" />
<module name="net.corda.cordapp-configuration.test" target="1.8" />
<module name="net.corda.cordapp.integrationTest" target="1.8" />
<module name="net.corda.cordapp.main" target="1.8" />
<module name="net.corda.cordapp.test" target="1.8" />
<module name="net.corda.core-deterministic.main" target="1.8" />
<module name="net.corda.core-deterministic.test" target="1.8" />
<module name="net.corda.core-tests.integrationTest" target="1.8" />
<module name="net.corda.core-tests.main" target="1.8" />
<module name="net.corda.core-tests.smokeTest" target="1.8" />
<module name="net.corda.core-tests.test" target="1.8" />
<module name="net.corda.core.main" target="1.8" />
<module name="net.corda.core.test" target="1.8" />
<module name="net.corda.data.main" target="1.8" />
<module name="net.corda.data.test" target="1.8" />
<module name="net.corda.demobench.main" target="1.8" />
<module name="net.corda.demobench.test" target="1.8" />
<module name="net.corda.docker.main" target="1.8" />
<module name="net.corda.docker.test" target="1.8" />
<module name="net.corda.docs.main" target="1.8" />
<module name="net.corda.docs.test" target="1.8" />
<module name="net.corda.example-code.integrationTest" target="1.8" />
<module name="net.corda.example-code.main" target="1.8" />
<module name="net.corda.example-code.test" target="1.8" />
<module name="net.corda.explorer.main" target="1.8" />
<module name="net.corda.explorer.test" target="1.8" />
<module name="net.corda.finance.main" target="1.8" />
<module name="net.corda.finance.test" target="1.8" />
<module name="net.corda.flows.main" target="1.8" />
<module name="net.corda.flows.test" target="1.8" />
<module name="net.corda.graphs.main" target="1.8" />
<module name="net.corda.graphs.test" target="1.8" />
<module name="net.corda.irs-demo.integrationTest" target="1.8" />
<module name="net.corda.irs-demo.main" target="1.8" />
<module name="net.corda.irs-demo.systemTest" target="1.8" />
<module name="net.corda.irs-demo.test" target="1.8" />
<module name="net.corda.irs-demo.web.main" target="1.8" />
<module name="net.corda.irs-demo.web.test" target="1.8" />
<module name="net.corda.isolated.main" target="1.8" />
<module name="net.corda.isolated.test" target="1.8" />
<module name="net.corda.jackson.main" target="1.8" />
<module name="net.corda.jackson.test" target="1.8" />
<module name="net.corda.jdk8u-deterministic.main" target="1.8" />
<module name="net.corda.jdk8u-deterministic.test" target="1.8" />
<module name="net.corda.jfx.integrationTest" target="1.8" />
<module name="net.corda.jfx.main" target="1.8" />
<module name="net.corda.jfx.test" target="1.8" />
<module name="net.corda.loadtest.main" target="1.8" />
<module name="net.corda.loadtest.test" target="1.8" />
<module name="net.corda.mock.main" target="1.8" />
<module name="net.corda.mock.test" target="1.8" />
<module name="net.corda.netparams.main" target="1.8" />
<module name="net.corda.netparams.test" target="1.8" />
<module name="net.corda.network-builder.main" target="1.8" />
<module name="net.corda.network-builder.test" target="1.8" />
<module name="net.corda.network-verifier.main" target="1.8" />
<module name="net.corda.network-verifier.test" target="1.8" />
<module name="net.corda.node-api.main" target="1.8" />
<module name="net.corda.node-api.test" target="1.8" />
<module name="net.corda.node-driver.integrationTest" target="1.8" />
<module name="net.corda.node-driver.main" target="1.8" />
<module name="net.corda.node-driver.test" target="1.8" />
<module name="net.corda.node.integrationTest" target="1.8" />
<module name="net.corda.node.main" target="1.8" />
<module name="net.corda.node.test" target="1.8" />
<module name="net.corda.nodeinfo.main" target="1.8" />
<module name="net.corda.nodeinfo.test" target="1.8" />
<module name="net.corda.notary-demo.main" target="1.8" />
<module name="net.corda.notary-demo.test" target="1.8" />
<module name="net.corda.quasar-hook.main" target="1.8" />
<module name="net.corda.quasar-hook.test" target="1.8" />
<module name="net.corda.rpc.integrationTest" target="1.8" />
<module name="net.corda.rpc.main" target="1.8" />
<module name="net.corda.rpc.smokeTest" target="1.8" />
<module name="net.corda.rpc.test" target="1.8" />
<module name="net.corda.samples.main" target="1.8" />
<module name="net.corda.samples.test" target="1.8" />
<module name="net.corda.serialization-deterministic.main" target="1.8" />
<module name="net.corda.serialization-deterministic.test" target="1.8" />
<module name="net.corda.serialization.main" target="1.8" />
<module name="net.corda.serialization.test" target="1.8" />
<module name="net.corda.shell-cli.main" target="1.8" />
<module name="net.corda.shell-cli.test" target="1.8" />
<module name="net.corda.shell.integrationTest" target="1.8" />
<module name="net.corda.shell.main" target="1.8" />
<module name="net.corda.shell.test" target="1.8" />
<module name="net.corda.simm-valuation-demo.integrationTest" target="1.8" />
<module name="net.corda.simm-valuation-demo.main" target="1.8" />
<module name="net.corda.simm-valuation-demo.test" target="1.8" />
<module name="net.corda.smoke-test-utils.main" target="1.8" />
<module name="net.corda.smoke-test-utils.test" target="1.8" />
<module name="net.corda.test-cli.main" target="1.8" />
<module name="net.corda.test-cli.test" target="1.8" />
<module name="net.corda.test-common.main" target="1.8" />
<module name="net.corda.test-common.test" target="1.8" />
<module name="net.corda.test-db.main" target="1.8" />
<module name="net.corda.test-db.test" target="1.8" />
<module name="net.corda.test-utils.main" target="1.8" />
<module name="net.corda.test-utils.test" target="1.8" />
<module name="net.corda.testing.main" target="1.8" />
<module name="net.corda.testing.test" target="1.8" />
<module name="net.corda.tools.main" target="1.8" />
<module name="net.corda.tools.test" target="1.8" />
<module name="net.corda.trader-demo.integrationTest" target="1.8" />
<module name="net.corda.trader-demo.main" target="1.8" />
<module name="net.corda.trader-demo.test" target="1.8" />
<module name="net.corda.verifier.main" target="1.8" />
<module name="net.corda.verifier.test" target="1.8" />
<module name="net.corda.webcapsule.main" target="1.6" />
<module name="net.corda.webcapsule.test" target="1.6" />
<module name="net.corda.webserver.integrationTest" target="1.8" />
<module name="net.corda.webserver.main" target="1.8" />
<module name="net.corda.webserver.test" target="1.8" />
<module name="net.corda.workflows-irs.main" target="1.8" />
<module name="net.corda.workflows-irs.test" target="1.8" />
<module name="net.corda.workflows-trader.main" target="1.8" />
<module name="net.corda.workflows-trader.test" target="1.8" />
<module name="net.corda.workflows.integrationTest" target="1.8" />
<module name="net.corda.workflows.main" target="1.8" />
<module name="net.corda.workflows.test" target="1.8" />
<module name="net.corda.worldmap.main" target="1.8" />
<module name="net.corda.worldmap.test" target="1.8" />
<module name="net.corda_buildSrc_main" target="1.8" />
<module name="net.corda_buildSrc_test" target="1.8" />
<module name="net.corda_canonicalizer_main" target="1.8" />
<module name="net.corda_canonicalizer_test" target="1.8" />
<module name="netparams_main" target="1.8" />
<module name="netparams_test" target="1.8" />
<module name="network-bootstrapper_main" target="1.8" />
<module name="network-bootstrapper_test" target="1.8" />
<module name="network-builder_main" target="1.8" />
<module name="network-builder_test" target="1.8" />
<module name="network-verifier-contracts_main" target="1.8" />
<module name="network-verifier-contracts_test" target="1.8" />
<module name="network-verifier-workflows_main" target="1.8" />
<module name="network-verifier-workflows_test" target="1.8" />
<module name="network-verifier.contracts.net.corda.contracts.main" target="1.8" />
<module name="network-verifier.contracts.net.corda.contracts.test" target="1.8" />
<module name="network-verifier.workflows.net.corda.workflows.main" target="1.8" />
<module name="network-verifier.workflows.net.corda.workflows.test" target="1.8" />
<module name="network-verifier_main" target="1.8" />
<module name="network-verifier_test" target="1.8" />
<module name="network-visualiser_main" target="1.8" />
<module name="network-visualiser_test" target="1.8" />
<module name="node-api_main" target="1.8" />
<module name="node-api_test" target="1.8" />
<module name="node-capsule_main" target="1.8" />
<module name="node-capsule_test" target="1.8" />
<module name="node-driver_integrationTest" target="1.8" />
<module name="node-driver_main" target="1.8" />
<module name="node-driver_test" target="1.8" />
<module name="node-schemas_main" target="1.8" />
<module name="node-schemas_test" target="1.8" />
<module name="node_integrationTest" target="1.8" />
<module name="node_main" target="1.8" />
<module name="node_smokeTest" target="1.8" />
<module name="node_test" target="1.8" />
<module name="nodeinfo_main" target="1.8" />
<module name="nodeinfo_test" target="1.8" />
<module name="notary-bft-smart_main" target="1.8" />
<module name="notary-bft-smart_test" target="1.8" />
<module name="notary-demo-contracts_main" target="1.8" />
<module name="notary-demo-contracts_test" target="1.8" />
<module name="notary-demo-workflows_main" target="1.8" />
<module name="notary-demo-workflows_test" target="1.8" />
<module name="notary-demo.contracts.net.corda.contracts.main" target="1.8" />
<module name="notary-demo.contracts.net.corda.contracts.test" target="1.8" />
<module name="notary-demo.workflows.net.corda.workflows.main" target="1.8" />
<module name="notary-demo.workflows.net.corda.workflows.test" target="1.8" />
<module name="notary-demo_main" target="1.8" />
<module name="notary-demo_test" target="1.8" />
<module name="notary-raft_main" target="1.8" />
<module name="notary-raft_test" target="1.8" />
<module name="publish-utils_main" target="1.8" />
<module name="publish-utils_test" target="1.8" />
<module name="quasar-hook_main" target="1.8" />
<module name="quasar-hook_test" target="1.8" />
<module name="quasar-utils_main" target="1.8" />
<module name="quasar-utils_test" target="1.8" />
<module name="rpc_integrationTest" target="1.8" />
<module name="rpc_main" target="1.8" />
<module name="rpc_smokeTest" target="1.8" />
<module name="rpc_test" target="1.8" />
<module name="samples_main" target="1.8" />
<module name="samples_test" target="1.8" />
<module name="sandbox_main" target="1.8" />
<module name="sandbox_test" target="1.8" />
<module name="serialization-deterministic_main" target="1.8" />
<module name="serialization-deterministic_test" target="1.8" />
<module name="serialization_main" target="1.8" />
<module name="serialization_test" target="1.8" />
<module name="shell-cli_integrationTest" target="1.8" />
<module name="shell-cli_main" target="1.8" />
<module name="shell-cli_test" target="1.8" />
<module name="shell_integrationTest" target="1.8" />
<module name="shell_main" target="1.8" />
<module name="shell_test" target="1.8" />
<module name="simm-valuation-demo-contracts-states_main" target="1.8" />
<module name="simm-valuation-demo-contracts-states_test" target="1.8" />
<module name="simm-valuation-demo_integrationTest" target="1.8" />
<module name="simm-valuation-demo_main" target="1.8" />
<module name="simm-valuation-demo_test" target="1.8" />
<module name="smoke-test-utils_main" target="1.8" />
<module name="smoke-test-utils_test" target="1.8" />
<module name="source-example-code_integrationTest" target="1.8" />
<module name="source-example-code_main" target="1.8" />
<module name="source-example-code_test" target="1.8" />
<module name="test-cli_main" target="1.8" />
<module name="test-cli_test" target="1.8" />
<module name="test-common_main" target="1.8" />
<module name="test-common_test" target="1.8" />
<module name="test-db_main" target="1.8" />
<module name="test-db_test" target="1.8" />
<module name="test-utils_integrationTest" target="1.8" />
<module name="test-utils_main" target="1.8" />
<module name="test-utils_test" target="1.8" />
<module name="testing-node-driver_integrationTest" target="1.8" />
<module name="testing-node-driver_main" target="1.8" />
<module name="testing-node-driver_test" target="1.8" />
<module name="testing-smoke-test-utils_main" target="1.8" />
<module name="testing-smoke-test-utils_test" target="1.8" />
<module name="testing-test-common_main" target="1.8" />
<module name="testing-test-common_test" target="1.8" />
<module name="testing-test-utils_main" target="1.8" />
<module name="testing-test-utils_test" target="1.8" />
<module name="testing_main" target="1.8" />
<module name="testing_test" target="1.8" />
<module name="tools-blobinspector_main" target="1.8" />
<module name="tools-blobinspector_test" target="1.8" />
<module name="tools_main" target="1.8" />
<module name="tools_test" target="1.8" />
<module name="trader-demo_integrationTest" target="1.8" />
<module name="trader-demo_main" target="1.8" />
<module name="trader-demo_test" target="1.8" />
<module name="unwanteds_main" target="1.8" />
<module name="unwanteds_test" target="1.8" />
<module name="verifier_integrationTest" target="1.8" />
<module name="verifier_main" target="1.8" />
<module name="verifier_test" target="1.8" />
<module name="web_main" target="1.8" />
<module name="web_test" target="1.8" />
<module name="webcapsule_main" target="1.6" />
<module name="webcapsule_test" target="1.6" />
<module name="webserver-webcapsule_main" target="1.8" />
<module name="webserver-webcapsule_test" target="1.8" />
<module name="webserver_integrationTest" target="1.8" />
<module name="webserver_main" target="1.8" />
<module name="webserver_test" target="1.8" />
<module name="workflows-irs_main" target="1.8" />
<module name="workflows-irs_test" target="1.8" />
<module name="workflows-trader_integrationTest" target="1.8" />
<module name="workflows-trader_main" target="1.8" />
<module name="workflows-trader_test" target="1.8" />
<module name="workflows.net.corda.workflows.main" target="1.8" />
<module name="workflows.net.corda.workflows.test" target="1.8" />
<module name="workflows_integrationTest" target="1.8" />
<module name="workflows_main" target="1.8" />
<module name="workflows_test" target="1.8" />
<module name="worldmap_main" target="1.8" />
<module name="worldmap_test" target="1.8" />
</bytecodeTargetLevel>
</component>
<component name="JavacSettings">
<option name="ADDITIONAL_OPTIONS_STRING" value="-parameters" />
</component>
</project>

View File

@ -1,22 +0,0 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="All tests (Unit + Integration)" type="GradleRunConfiguration" factoryName="Gradle">
<ExternalSystemSettings>
<option name="executionName" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="externalSystemIdString" value="GRADLE" />
<option name="scriptParameters" value="" />
<option name="taskDescriptions">
<list />
</option>
<option name="taskNames">
<list>
<option value="cleanTest" />
<option value="test" />
<option value="integrationTest" />
</list>
</option>
<option name="vmOptions" value="" />
</ExternalSystemSettings>
<method />
</configuration>
</component>

View File

@ -1,20 +0,0 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Clean" type="GradleRunConfiguration" factoryName="Gradle">
<ExternalSystemSettings>
<option name="executionName" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="externalSystemIdString" value="GRADLE" />
<option name="scriptParameters" value="" />
<option name="taskDescriptions">
<list />
</option>
<option name="taskNames">
<list>
<option value="clean" />
</list>
</option>
<option name="vmOptions" value="" />
</ExternalSystemSettings>
<method />
</configuration>
</component>

View File

@ -1,23 +0,0 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Clean + Install" type="GradleRunConfiguration" factoryName="Gradle">
<ExternalSystemSettings>
<option name="executionName" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="externalSystemIdString" value="GRADLE" />
<option name="scriptParameters" value="" />
<option name="taskDescriptions">
<list />
</option>
<option name="taskNames">
<list>
<option value="clean" />
<option value="build" />
<option value="installDist" />
<option value="install" />
</list>
</option>
<option name="vmOptions" value="" />
</ExternalSystemSettings>
<method />
</configuration>
</component>

View File

@ -1,22 +0,0 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Explorer - GUI" type="TORNADOFX_RUNCONFIGURATION" factoryName="TornadoFX Configuration Factory" run-type="App" live-views="false" live-stylesheets="false" dump-stylesheets="false">
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
<option name="RUN_TYPE" value="App" />
<option name="VIEW_CLASS_NAME" />
<option name="LIVE_STYLESHEETS" value="false" />
<option name="DUMP_STYLESHEETS" value="false" />
<option name="LIVE_VIEWS" value="false" />
<option name="MAIN_CLASS_NAME" value="net.corda.explorer.Main" />
<option name="VM_PARAMETERS" value="" />
<option name="PROGRAM_PARAMETERS" value="" />
<option name="WORKING_DIRECTORY" value="file://$PROJECT_DIR$" />
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
<option name="ALTERNATIVE_JRE_PATH" />
<option name="ENABLE_SWING_INSPECTOR" value="false" />
<option name="ENV_VARIABLES" />
<option name="PASS_PARENT_ENVS" value="true" />
<module name="explorer_main" />
<envs />
<method />
</configuration>
</component>

View File

@ -1,21 +0,0 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Install" type="GradleRunConfiguration" factoryName="Gradle" singleton="true">
<ExternalSystemSettings>
<option name="executionName" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="externalSystemIdString" value="GRADLE" />
<option name="scriptParameters" value="" />
<option name="taskDescriptions">
<list />
</option>
<option name="taskNames">
<list>
<option value="installDist" />
<option value="install" />
</list>
</option>
<option name="vmOptions" value="" />
</ExternalSystemSettings>
<method />
</configuration>
</component>

View File

@ -1,21 +0,0 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Integration tests" type="GradleRunConfiguration" factoryName="Gradle">
<ExternalSystemSettings>
<option name="executionName" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="externalSystemIdString" value="GRADLE" />
<option name="scriptParameters" value="" />
<option name="taskDescriptions">
<list />
</option>
<option name="taskNames">
<list>
<option value="cleanTest" />
<option value="integrationTest" />
</list>
</option>
<option name="vmOptions" value="" />
</ExternalSystemSettings>
<method />
</configuration>
</component>

View File

@ -1,21 +0,0 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Unit tests" type="GradleRunConfiguration" factoryName="Gradle">
<ExternalSystemSettings>
<option name="executionName" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="externalSystemIdString" value="GRADLE" />
<option name="scriptParameters" value="" />
<option name="taskDescriptions">
<list />
</option>
<option name="taskNames">
<list>
<option value="cleanTest" />
<option value="test" />
</list>
</option>
<option name="vmOptions" value="" />
</ExternalSystemSettings>
<method />
</configuration>
</component>

View File

@ -1,3 +0,0 @@
<component name="DependencyValidationManager">
<scope name="Corda API" pattern="src[core_main]:*..*&amp;&amp;!src[core_main]:net.corda.core.internal..*||src[rpc_main]:net.corda.client.rpc.*||src[jackson_main]:net.corda.client.jackson.*" />
</component>