How to check Java library dependencies on appengine whitelist?

I want to use the SIFWorks ADK, a java library, with my appengine project. This is a complex library with 700 classes. I can get an example application for working in an application development environment. I do not want to be surprised later in development that some class that I need to use, but could not verify, is not dependent on a white list.

I used DependencyFinder to generate a list of dependencies, and it creates a huge list of classes, as well as things like java.util.* , Which I cannot check directly from the whitelist.

What is the best way to provide a complex library that is fully compatible with appengine?

+4
source share
1 answer

Check out this project: http://www.ltech.com/cloud/google-app-engine/java-compatibility-analyzer It scans your class files and checks whitelist dependencies.

+2
source

Source: https://habr.com/ru/post/1344387/


All Articles