
Hi Folks, I am new to appwrite and learning things.
I have installed appwrite, setup appwrite cli, configured java runtime 17.0.0 I deployed a sample java function (the default starter java function).
I am getting the below error message
Docker Error: Preparing for build ... Building ... Compiling ... Downloading https://services.gradle.org/distributions/gradle-7.5.1-bin.zip ...........10%............20%...........30%............40%...........50%............60%...........70%............80%...........90%............100%
Welcome to Gradle 7.5.1!
Here are the highlights of this release:
- Support for Java 18
- Support for building with Groovy 4
- Much more responsive continuous builds
- Improved diagnostics for dependency resolution
For more details see https://docs.gradle.org/7.5.1/release-notes.html
Starting a Gradle Daemon (subsequent builds will be faster)
Task :compileJava FAILED /usr/local/server/src/main/java/io/openruntimes/java/src/Main.java:33: error: cannot find symbol Map<String, Object> json = new HashMap<>(); ^ symbol: class Map location: class Main Note: /usr/local/server/src/main/java/io/openruntimes/java/Server.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: /usr/local/server/src/main/java/io/openruntimes/java/Server.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. 1 error
FAILURE: Build failed with an exception.
- What went wrong:
Execution failed for task ':compileJava'.
Compilation failed; see the compiler error output for details.
- Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
- Get more help at https://help.gradle.org
BUILD FAILED in 37s 1 actionable task: 1 executed

I am self hosting appwrite. Using Java17 runtime

did you include import java.util.Map;
?

Yup refactored it now and it's working

[Solved] Build Failure On Java Starter Function Deployment
Recommended threads
- [GO] How to work with multiple local pac...
While deploying I get the error `my_module/sub: package my_module/sub is not in std (/usr/local/go/src/my_module/sub)` my code has only one module `my_module`...
- update_documents is called inside a func...
Traceback (most recent call last): File "/usr/local/server/src/function/src/main.py", line 23, in main result = databases.update_documents( File "/usr/l...
- PDO-Sql or Mysql connect from outside da...
Hi, i'm new user in Appwrite. wanna ask about Functions. i using runtime php 8.3. Try make php code to fetch data from outside database using PDO-sql and Mysql ...
