Fading Coder

One Final Commit for the Last Sprint

Adding Local JAR Dependencies in Maven and Packaging Strategies

When a project depends on JARs that are not available in a remote repository, you can bring them into a Maven build in two primary ways. The first publishes the artifact into your local repository and treats it like a normal dependency. The second wires the JAR directly via a system-scoped dependenc...

Deploying a Maven Web Application to Tomcat 9 Using the Tomcat Manager

Tomcat 9 does not provide a dedicated Maven plugin. The Tomcat Manager interface, however, is backward-compatible, so the Tomcat 7 Maven Plugin can be used to deploy to Tomcat 9. This guide shows two setups: Using the Tomcat 8 Maven Plugin (historical build that requires custom plugin repositories)...