pom.xml配置文件

来源:3-5 Hello Spring MVC

hello_chen

2016-01-19 23:00

老师,那个pom.xml配置文件能不能发一下给我,谢谢

写回答 关注

1回答

  • yangchenbing
    2016-01-20 20:23:14
    已采纳

    <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>com.sfa.test</groupId>

      <artifactId>maven-01</artifactId>

      <version>0.0.1-SNAPSHOT</version>

      <build>

        <plugins>

          <plugin>

            <artifactId>maven-compiler-plugin</artifactId>

            <configuration>

              <source>1.6</source>

              <target>1.6</target>

            </configuration>

          </plugin>

        </plugins>

      </build>

    </project>


    hello_...

    非常感谢!

    2016-01-21 21:24:26

    共 1 条回复 >

Spring MVC起步

Java中Spring MVC框架入门教程,快来看最易用的MVC框架

195979 学习 · 572 问题

查看课程

相似问题