Hey Trez, We here in the Community Support branch of Cloud Platform Support usually monitor threads like these to see if there are unresolved questions from community members. I just wanted to jump in here to clarify that yes, for J2EE structured applications in WAR format <https://docs.oracle.com/cd/E19830-01/819-4712/6n6rit5j4/index.html>, the deployment format for Java App Engine, WEB-INF/lib is where your jar files should be, and subdirectories will not be scanned for jars. There are numerous threads around the internet discussing this, such as this excellent Stack Overflow Q&A <http://stackoverflow.com/a/1821951/4270992>. If you'd like to have a more custom deployment environment than App Engine, consider Compute Engine <https://cloud.google.com/compute/> or Managed VM Custom Runtimes <https://cloud.google.com/appengine/docs/managed-vms/custom-runtimes>.
On Thursday, December 17, 2015 at 11:32:27 AM UTC-5, Trez Ertzzer wrote: > > Hello. > Thanks for your answer. > maybe my question was not clear enough: > I am using eclipse and GPE (I do not want to use any other tool). > > imagine I have created a JAR (by myself) called myPersonalLibrary.jar > my question is: > can I put this jar in > > war/web-inf/lib/*others*/myPersonalLibrary.jar? > > or do I have to put it in > war/web-inf/lib/myPersonalLibrary.jar? > > This is a yes/no question... > > if it's a no then thank you for your suggestions. > > > > Le mardi 15 décembre 2015 21:43:45 UTC+1, Nick a écrit : >> >> Your best bet is to use a dependency manager in your build tool and >> ignore the lib folder entirely. Dependencies in Java are not isolated in >> any way, so even if you achieve this it won't reflect reality (i.e. Shared >> dependencies such as asm, cglib, commons etc) >> >> 🌲🌳🌲🌳🌲🌳🌲🌳🌲🌳🌲 > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/3dd753ed-f585-4247-bda7-cd012b83ca41%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
