Nexapp Libraries for Kotlin
- Java 11
- Maven 3.5+
- GNU Make
Use the makefile to do basic operations
$ make help
Nexapp Kore
> test
> lint
> coverage - Generates Jacoco coverage report
The libraries are divided throught multiple maven modules
A Kotlin tracing library
val pingResult = tracer.trace("Ping") { trace ->
trace.setTag("ip", currentIp)
ping(currentIp)
}
A Kotlin AWS Lambda library for automatic logging and error handling
class MyHandler : LambdaHandler<String, String>() {
override fun handleRequest(input: String, awsRuntimeContext: Context) {
return "Test: $input"
}
}