Firebase SDK 9.0.0 is exciting but I cannot find the plain java version of its library. The older 2.5.2 doc used to have separate SDK for Android and plain JVM, I cannot find th
Yes you can. Look under Server in the docs instead of the Android section.
We publish the Firebase Java SDK to the Maven central repository. To install the library, you can simply declare it as a dependency in your build.gradle file:
dependencies { compile 'com.google.firebase:firebase-server-sdk:[3.0.0,)' }
If you use Maven to build your application, you can add the following dependency to your pom.xml:
<dependency> <groupId>com.google.firebase</groupId> <artifactId>firebase-server-sdk</artifactId> <version>[3.0.0,)</version> </dependency>