Jacob Peterson
Jacob Peterson
Researched incremental support a bit more and, if I'm not mistaken, it does seem like this annotation processor can be configured to be incremental by declaring it as an [aggregating](https://docs.gradle.org/current/userguide/java_plugin.html#aggregating_annotation_processors)...
@tipsy did a quick scan and it looks good to me 👍
Not sure if this would work, but a potential (but hacky) solution would be to change [this](https://github.com/aws/aws-sdk-java-v2/blob/61d16e083a27a146665aec19f14bfd31e54e9f83/core/imds/src/main/java/software/amazon/awssdk/imds/internal/Token.java#L51) line from: ```java return Instant.now().isAfter(createdTime.plus(ttl)); ``` to: ```java // Add some buffer time...
@debora-ito any updates on this?
A few ideas: - Make sure you're using `TraderAPIEndpointType.PAPER` in your `AlpacaAPI` constructor. - Make sure your API keys are correct and correspond to your paper account in Alpaca. -...
They are available in the `net.jacobpeterson.alpaca.model.util.apitype` package ([Javadoc](https://javadoc.io/doc/net.jacobpeterson.alpaca/alpaca-java/latest/net/jacobpeterson/alpaca/model/util/apitype/package-summary.html)). Make sure you're using the Maven artifact dependency. Many classes get generated at build time.
Can you share your `build.gradle` or `pom.xml` or some code snippets showing the imported packages? I'm unable to reproduce your issue using version `10.0.1`.
Your `pom.xml` appears to look fine. Can you share the build stacktrace/error and the code snippet where you are getting a compilation error?
Run `mvn build` and paste the output. Can't see what the compilation errors are in the screenshot. Could also be IntelliJ's cache. Invalidate the cache by going to File >...
Is this still an issue for you?