maven:无法加载类" org.slf4j.impl.StaticLoggerBinder"

时间:2015-05-21 15:15:02

标签: maven tomcat7

我有maven项目,这是一个pom.xml文件:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
        <groupId>tavridasite</groupId>
        <artifactId>tavridasite</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <packaging>war</packaging>
        <build>
                <sourceDirectory>src</sourceDirectory>
                <plugins>
                        <plugin>
                                <artifactId>maven-compiler-plugin</artifactId>
                                <version>3.1</version>
                                <configuration>
                                        <source>1.7</source>
                                        <target>1.7</target>
                                </configuration>
                        </plugin>
                        <plugin>
                                <artifactId>maven-war-plugin</artifactId>
                                <version>2.4</version>
                                <configuration>
                                        <warSourceDirectory>WebContent</warSourceDirectory>
                                        <failOnMissingWebXml>false</failOnMissingWebXml>
                                </configuration>
                        </plugin>
                        <plugin>
                                <groupId>org.apache.tomcat.maven</groupId>
                                <artifactId>tomcat7-maven-plugin</artifactId>
                                <version>2.2</version>
                                <configuration>
                                        <url>http://localhost/manager/text</url>
                                        <server>TomcatServer</server>
                                        <path>/</path>
                                </configuration>
                        </plugin>
                </plugins>
        </build>
</project>

我在这里没有任何依赖 当我执行任何mvn命令时,例如:

mvn tomcat7:undeploy  

我在控制台输出中出现以下错误:

  SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
  SLF4J: Defaulting to no-operation (NOP) logger implementation
  SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.

我搜索了这个错误,但我得到的所有内容都转发到pom.xml中的标签,但我没有这样的标签。

0 个答案:

没有答案