fdk-java icon indicating copy to clipboard operation
fdk-java copied to clipboard

Java API and runtime for fn.

Results 56 fdk-java issues
Sort by recently updated
recently updated
newest added

Hello; using JDK 9 and Maven 3.5.0 I've: * cloned the repository * run `mvn -U clean install` on it It fails trying to download the `com.github.kenglxn.qrgen:javase:jar:2.3.0` dependency: ``` [INFO]...

bug

1. By default, the CDS shared archive is installed with the JRE (1). Despite that, we are regenerating this CDS archive with `RUN ["/usr/bin/java", "-Xshare:dump"]`. So and unless I'm missing...

Javadoc still uses the 'old' `functionId` pattern, they should be updated to reflect the 'new' `functionId` style. E.g. - https://github.com/fnproject/fdk-java/blob/0b7d2e602a32f17f115cfa285168f39e781872f0/flow-api/src/main/java/com/fnproject/fn/api/flow/Flow.java#L34 - https://github.com/fnproject/fdk-java/blob/0b7d2e602a32f17f115cfa285168f39e781872f0/flow-api/src/main/java/com/fnproject/fn/api/flow/Flow.java#L80 - https://github.com/fnproject/fdk-java/blob/0b7d2e602a32f17f115cfa285168f39e781872f0/flow-api/src/main/java/com/fnproject/fn/api/flow/Flow.java#L201 - https://github.com/fnproject/fdk-java/blob/0b7d2e602a32f17f115cfa285168f39e781872f0/flow-api/src/main/java/com/fnproject/fn/api/flow/Flow.java#L223 - ...

It appeared during a `deploy --local --app japp`, with no further information

This happens for the boilerplate-only java project ,during fn build. ``` Step 5/11 : RUN ["mvn", "package", "dependency:copy-dependencies", "-DincludeScope=runtime", "-DskipTests=true", "-Dmdep.prependGroupId=true", "-DoutputDirectory=target", "--fail-never"] ---> Running in 29e9543024d0 Error: Could not...

Currently, a simple Java Hello world function has 2.2mb of jars in the classpath in which almost 2mb are for optional thirdparty libraries. 1.5mb for Jackson Databind 316kb for Commons...

I'm hitting an issue with Fn Flow. The logs are a bit hard to parse and could easily be made a bit more readable. ``` time="2018-10-12T15:53:18Z" level=debug msg="An error occurred...

The build image has a pre-cached version of some maven modules but it looks like boilerplate generates different plugin dep versions - specifcally for mvn compiler plugin and mvn deploy...

Docker uses: http://tldp.org/LDP/abs/html/exitcodes.html Make sure FDK does not allow functions to exit with these codes. For example, 137 exit code is currently flagged as OOM in fn-agent, therefore functions should...

I'm attempting to duplicate the FN flow "first flow" tutorial as described here: https://github.com/fnproject/fdk-java/blob/master/docs/FnFlowsUserGuide.md. My project follows the "primes" example pretty closely in structure and code: https://imgur.com/a/3TMdQ And here are...