jetty 可以正常启动
换了tomcat启动没反映
setting.xml
<settings>
<servers>
  <server>
    <id>tomcat</id>
    <username>admin</username>
    <password>admin</password>
  </server>  
</servers>
</settings>pom.xml
<dependencies>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-servlet-api</artifactId>
<version>7.0.4</version>
<scope>provided</scope>
</dependency> <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>



<build>
<finalName>123.test</finalName>
<plugins>
<plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>tomcat-maven-plugin</artifactId>
                <version>1.1</version>
            </plugin>
</plugins>
</build>



eclipse run as goalus:tomcat:run
启动显示
[INFO] Scanning for projects...
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building testweb 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] >>> tomcat-maven-plugin:1.1:run (default-cli) @ testweb >>>
[INFO] 
[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ testweb ---
[WARNING] Using platform encoding (GBK actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] Copying 0 resource
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ testweb ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] <<< tomcat-maven-plugin:1.1:run (default-cli) @ testweb <<<
[INFO] 
[INFO] --- tomcat-maven-plugin:1.1:run (default-cli) @ testweb ---
[INFO] Skipping non-war project
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1.409s
[INFO] Finished at: Thu Dec 08 17:08:45 CST 2011
[INFO] Final Memory: 3M/6M
[INFO] ------------------------------------------------------------------------网上的方法基本都试了,就这样配置不报错
但是tomcat起不来?