I am trying to understand why I am not able to launch a SWF from the URL after launching mvm jetty:run on my project.
The project has built successfully and produced a Falcon-WAR-0.0.1-SNAPSHOT.war in the maven target directory. In this file are the following files - and includes the .swf file compiled from the Flex project.

My web.xml is very simple and contains the following code:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
<display-name>Falcon Flights</display-name>
<welcome-file-list>
<welcome-file>Falcon-Flights.swf</welcome-file>
</welcome-file-list>
</web-app>
The context root of my application is the same as the artifact ID of the WAR, so it is FALCON-WAR.
When I launch mvn jetty:run, I get the following print to the console:

However when I try to navigate to http://localhost:8080/FALCON-WAR on my browser, I get the following, when I expect to launch the .swf file from the web.xml definition.

Could anyone help me fathom what I am doing wrong? This could me more to do with understanding how web containers interpret .war structures - but this is my first bash at web application development and could do with a nudge!
Many thanks in advance.