You can use any Java compatible libraries with the Java runtime on the App Engine flexible environment. These instructions use Apache Maven to build, run, and deploy a sample app using a supported Java runtime. For more information about using supported Java versions, see the Java runtime.
For details about installing Maven, see Using Apache Maven and the App Engine plugin.Declare and manage dependencies
To manage dependencies using Maven, you need to specify the dependencies in
the <dependencies>
section inside the
pom.xml
file of your project.
To manage your project's dependency on Maven itself, you can use the
Maven Wrapper. If you do not use the
Maven Wrapper, App Engine defaults to using a recent version of Maven
when running gcloud app deploy
.
Specify the Java servlet library
Eclipse Jetty and Tomcat apps require the Java servlet library. Specify it in
your pom.xml
file's <dependencies>
entry:
Use the Cloud Client Libraries
Cloud Client Libraries for Java provide idiomatic access to Google Cloud services. To use a library, declare it as a dependency.
Typically, you only declare dependencies on the specific libraries that your app needs. For example, to use the Cloud Storage library:
You can configure the Cloud Client Libraries for Java to handle authentication automatically.