Remove IREE_BUILD_EXPERIMENTAL_JAVA_BINDINGS.

The experimental/bindings/java/ code was deleted.
diff --git a/CMakeLists.txt b/CMakeLists.txt
index cafce6b..8c702a4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -78,7 +78,6 @@
 #-------------------------------------------------------------------------------
 
 option(IREE_BUILD_EXPERIMENTAL_REMOTING "Builds experimental remoting support." OFF)
-option(IREE_BUILD_EXPERIMENTAL_JAVA_BINDINGS "Builds the experimental java bindings." OFF)
 option(IREE_BUILD_EXPERIMENTAL_ROCM "Builds the experimental ROCM Backend." OFF)
 option(IREE_ENABLE_NEW_INTEGRATION_TESTS "Enables new integration tests and disables old." OFF)
 
@@ -562,10 +561,6 @@
   add_subdirectory(experimental/remoting)
 endif()
 
-if(${IREE_BUILD_EXPERIMENTAL_JAVA_BINDINGS})
-  add_subdirectory(experimental/bindings/java)
-endif()
-
 if(${IREE_ENABLE_TENSORFLOW})
   add_subdirectory(integrations/tensorflow)
 endif()
diff --git a/docs/developers/get_started/cmake_options_and_variables.md b/docs/developers/get_started/cmake_options_and_variables.md
index 5fbf9ba..2212600 100644
--- a/docs/developers/get_started/cmake_options_and_variables.md
+++ b/docs/developers/get_started/cmake_options_and_variables.md
@@ -58,10 +58,6 @@
 
 Builds the IREE TFLite Java bindings with the C API compatibility shim. Defaults to `ON`.
 
-#### `IREE_BUILD_EXPERIMENTAL_JAVA_BINDINGS`:BOOL
-
-Builds the experimental java bindings. Defaults to `OFF`.
-
 #### `IREE_BUILD_EXPERIMENTAL_REMOTING`:BOOL
 
 Builds experimental remoting component. Defaults to `OFF`.