WEB开发网
开发学院软件开发Java SSH笔记一 用maven构建项目 阅读

SSH笔记一 用maven构建项目

 2009-09-23 00:00:00 来源:WEB开发网   
核心提示: 2.3 打开项目,修改该pom.xml如下 1<projectxmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

2.3    打开项目,修改该pom.xml如下

 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 3   <modelVersion>4.0.0</modelVersion>
 4   <groupId>net.selitech.ssim</groupId>   <!--工程的组织或团队的唯一标识,并且这个也是一个项目的关键标识,推荐使用这个组织或团队的完整域名-->
 5   <artifactId>ssim</artifactId>                <!--工程的基本名称 -->
 6   <packaging>war</packaging>              <!--打包的类型,可以为war、jar、ear等等-->
 7   <version>1.0-SNAPSHOT</version>     <!--项目版本号-->
 8   <name>SSIM Maven Webapp</name>  <!--工程显示的名称-->
 9   <description> Web application</description>  <!--对工程的基本描述-->
10 
11   <build><!--主要用于编译设置-->
12     <finalName>${artifactId}</finalName>
13     <plugins>
14       <plugin>
15         <groupId>org.apache.maven.plugins</groupId>
16         <artifactId>maven-compiler-plugin</artifactId>
17         <configuration>
18           <source>1.6</source>
19           <target>1.6</target>
20           <encoding>UTF8</encoding>
21         </configuration>
22       </plugin>
23       <plugin>
24         <groupId>org.apache.maven.plugins</groupId>
25         <artifactId>maven-surefire-plugin</artifactId>
26         <version>2.4.2</version>
27         <configuration>
28           <skipTests>true</skipTests>
29         </configuration>
30       </plugin>
31       <plugin>
32         <artifactId>maven-war-plugin</artifactId>
33         <configuration>
34           <webappDirectory>${basedir}/src/main/webapp</webappDirectory>
35           <warSourceDirectory>${basedir}/src/main/webapp</warSourceDirectory>
36         </configuration>
37       </plugin>
38     </plugins>
39   </build>
40   <!--定义依赖(项目中需要依赖的包-->
41   <dependencies>
42     <dependency>
43       <groupId>junit</groupId>
44       <artifactId>junit</artifactId>
45       <version>4.5</version>
46       <scope>test</scope>
47     </dependency>
48   </dependencies>
49 </project>

Tags:SSH 笔记 maven

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接