mirror of
https://github.com/corda/corda.git
synced 2024-12-19 13:08:04 +00:00
ab95aa57a2
* [EG-438] First commit of error code interface * [EG-438] Implement error reporter and a few error codes * [EG-438] Add unit tests and default properties files * [EG-438] Add the error table builder * [EG-438] Update initial properties files * [EG-438] Add some Irish tests and the build.gradle * [EG-438] Fall back for aliases and use different resource strategy * [EG-438] Define the URL using a project-specific context * [EG-438] Tidy up initialization code * [EG-438] Add testing to generator and tidy up * [EG-438] Remove direct dependency on core and add own logging config * [EG-438] Fix compiler warnings and tidy up logging * [EG-438] Fix detekt warnings * [EG-438] Improve error messages * [EG-438] Address first set of review comments * [EG-438] Use enums and a builder for the reporter * [EG-438] Address first set of review comments * [EG-438] Use enums and a builder for the reporter * [EG-438] Add kdocs for error resource static methods * [EG-440] Add error code for duplicate CorDapp loading * [EG-438] Handle enums defined with underscores * [EG-440] Add errors for some CorDapp loading scenarios * [EG-440] Finish adding errors for CorDapp loading * [EG-440] Fix up errors in properties files * [EG-440] Start change to error code definition * [EG-440] Update error code definition and add resource generation tool * [EG-440] Tidy up error resource generation tool frontend * [EG-440] Small refactorings and add kdocs * [EG-440] Generate all missing resources * [EG-440] Some refactoring and start writing a test * [EG-440] Update unit test for resource generator * [EG-440] Renaming of various parts of the error tool * [EG-440] Add testing for errors and fix an issue in resource generation * [EG-440] Add a kdoc for context provider API * [EG-440] Remove old code from repository * [EG-440] Address some review comments
31 lines
651 B
Groovy
31 lines
651 B
Groovy
apply plugin: 'kotlin'
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":common-logging")
|
|
implementation project(":tools:cliutils")
|
|
implementation "info.picocli:picocli:$picocli_version"
|
|
implementation "org.apache.logging.log4j:log4j-slf4j-impl:$log4j_version"
|
|
|
|
testCompile "junit:junit:4.12"
|
|
}
|
|
|
|
jar {
|
|
enabled = false
|
|
classifier = 'ignore'
|
|
}
|
|
|
|
shadowJar {
|
|
baseName = "corda-tools-error-utils"
|
|
manifest {
|
|
attributes(
|
|
'Main-Class': "net.corda.errorUtilities.ErrorToolKt"
|
|
)
|
|
}
|
|
}
|
|
|
|
assemble.dependsOn shadowJar |