码迷,mamicode.com
首页 > 其他好文 > 详细

maven pom.xml基本设置

时间:2018-06-04 20:12:56      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:ring   enc   mave   framework   let   jar包   jsp   pom.xml   允许   

<dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>

        <!-- 允许创建jsp页面 -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.5</version>
            <scope>provided</scope>
        </dependency>
        
        <!-- 导入springmvc依赖的jar包 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>5.0.6.RELEASE</version>
        </dependency>
        
    </dependencies>
    <build>
        <finalName>SpringMVC_Maven</finalName>
        <plugins>
            <!--设置编译的JDK版本 -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.5.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <encoding>UTF-8</encoding>
                    <showWarnings>true</showWarnings>
                </configuration>
            </plugin>
        </plugins>
    </build>

 

maven pom.xml基本设置

标签:ring   enc   mave   framework   let   jar包   jsp   pom.xml   允许   

原文地址:https://www.cnblogs.com/hzb462606/p/9135130.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!