I use Jenkins to deploy war on my remote server that uses Tomcat 7. I need my application to be directly installed on a dedicated port as follows:
http:
instead of the usual:
http:
To do this, I deploy my military archive as ROOT directly to the Tomcat 'webapp' directory. Everything works fine, the archive is sent and deployed, but I get a message from Jenkins:

Just to remind you - the archive has been successfully deployed! But as a perfectionist, I just can't bear such a result.
Here is my configuration for deploying Jenkins:

Here is the Tomcat configuration for my application as a separate service:
<Service name="Jangel">
<Connector port="8083" protocol="HTTP/1.1"
connectionTimeout="20000" redirectPort="8443" />
<Engine name="Jangel" defaultHost="localhost">
<Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase" />
<Host name="localhost" appBase="Jangel" unpackWARs="true"
autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false">
</Host>
</Engine>
So the question is, how to properly configure Tomcat & Jenkins?
Or how can I avoid / disable this Jenkins error?