在服务器上部署时出现JSF1029警告

在服务器上部署时出现JSF1029警告,jsf,Jsf,我使用JSF2.1.21和Tomahawk 1.1.14。当我尝试在服务器上部署我的项目时(可以是Tomcat或Weblogic),我会看到警告: WARNING: JSF1029: Application is versioned at 2.0 (either explicitly by the version of /WEB-INF/faces-config.xml or the lack of a /WEB-INF/faces-confg.xml), however class

我使用JSF2.1.21和Tomahawk 1.1.14。当我尝试在服务器上部署我的项目时(可以是Tomcat或Weblogic),我会看到警告:

WARNING: JSF1029:  Application is versioned at 2.0 (either explicitly by the version
 of /WEB-INF/faces-config.xml or the lack of a /WEB-INF/faces-confg.xml), however class    
'org.apache.myfaces.custom.aliasbean.AliasBeanTagHandler' depends on legacy  facelet class.  
The facelet artifact represented by this class will not be registered.
以及关于不同处理程序的许多其他警告(如AliasBeansScopeTagHandler、HtmlInputCalendarTagHandler等)。如何避免这种警告? 我试图在tomahawk21或tomahawk20上更改tomahawk的artifactId,但没有帮助+它抛出了以下内容:

java.util.MissingResourceException: Can't find bundle for base name resources.application, locale en
更新: 我考虑添加stacktrace,它在我尝试使用tomahawk20时显示:

java.util.MissingResourceException: Can't find bundle for base name resources.application, locale en
at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:1499)
at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:1322)
at java.util.ResourceBundle.getBundle(ResourceBundle.java:1028)
at org.apache.myfaces.tomahawk.resource.UncompressedResourceHandlerWrapper.getLocalePrefixForLocateResource(UncompressedResourceHandlerWrapper.java:242)
at org.apache.myfaces.tomahawk.resource.UncompressedResourceHandlerWrapper.createResource(UncompressedResourceHandlerWrapper.java:78)
at org.apache.myfaces.tomahawk.resource.UncompressedResourceHandlerWrapper.createResource(UncompressedResourceHandlerWrapper.java:61)
at com.sun.faces.facelets.tag.jsf.CompositeComponentTagLibrary.getCompositeComponentResource(CompositeComponentTagLibrary.java:155)

在weblogic上部署应用程序之前,首先在ApacheTomcat下进行部署,并尝试解决警告问题。 “找不到基本名称resources.application,locale en的捆绑包”,如果您的应用程序使用maven,请将 i18n.properties文件到src\main\resources

我将完全配置的JSF2.2项目tamplate上传到github