(RESOLVIDO) Template.xhtml Not Found in ExternalContext as a Resource

Olá pessoal!
Estou com um problema quando mando a aplicação gerar uma página simples xhtml. Apaterece a mensagem no título do tópico. Segue os arquivos:
web.xml:

<?xml version="1.0" encoding="UTF-8"?>


appodonto

Faces Servlet
javax.faces.webapp.FacesServlet
1


Faces Servlet
*.xhtml

<context-param>
	<param-name>javax.faces.PROJECT_STAGE</param-name>
	<param-value>Development</param-value>
</context-param>

<welcome-file-list>
	<welcome-file>index.html</welcome-file>
	<welcome-file>index.htm</welcome-file>
	<welcome-file>index.xhtm</welcome-file>
</welcome-file-list>

pom.xml:


4.0.0
com.odontoapp
appodonto
0.0.1-SNAPSHOT
war

<dependencies>
	<dependency>
		<groupId>org.glassfish</groupId>
		<artifactId>javax.faces</artifactId>
		<version>2.3.3</version>
		<scope>provided</scope>
	</dependency>

	<!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core -->

	<dependency>
		<groupId>org.hibernate</groupId>
		<artifactId>hibernate-core</artifactId>
		<version>5.2.16.Final</version>
	</dependency>

	<dependency>
		<groupId>org.hibernate</groupId>
		<artifactId>hibernate-annotations</artifactId>
		<version>3.5.6-Final</version>
	</dependency>

	<dependency>
		<groupId>javax.transaction</groupId>
		<artifactId>jta</artifactId>
		<version>1.1</version>
	</dependency>

	<dependency>
		<groupId>org.primefaces</groupId>
		<artifactId>primefaces</artifactId>
		<version>6.2</version>
	</dependency>

	<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
	<dependency>
		<groupId>mysql</groupId>
		<artifactId>mysql-connector-java</artifactId>
		<version>6.0.4</version>
	</dependency>

</dependencies>

<repositories>
	<!-- For 3.5 and older -->
	<repository>
		<id>prime-repo</id>
		<name>PrimeFaces Maven Repository</name>
		<url>http://repository.primefaces.org</url>
		<layout>default</layout>
	</repository>
</repositories>

<properties>
	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
	<finalName>appodonto</finalName>
	<plugins>
		<plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-compiler-plugin</artifactId>
			<version>3.7.0</version>
			<configuration>
				<source>1.8</source>
				<target>1.8</target>
			</configuration>
		</plugin>
	</plugins>
</build>

Tá faltando código aí, hein?

Descobri o que estava faltando.
É o seguinte:
Como estou usando o WildFly como servidor, dentro da pasta WEB-INF tive que criar um arquivo jboss-web.xml e dentro dele as seguintes tags:

<jboss-web>
	<context-root>nome do projeto</context-root>
</jboss-web>

Depois é só dar um clean no servidor e pronto, funcionou.

Obrigado pela tentar me ajudar.