<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.cku</groupId>
    <artifactId>caibhome</artifactId>
    <version>1.0-SNAPSHOT</version>
  </parent>
  <artifactId>session-server</artifactId>
  <name>session-server</name>
  <packaging>war</packaging>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
      
    <dependency>
        <groupId>com.cku</groupId>
        <artifactId>caibmobile-util</artifactId>
        <version>1.0-SNAPSHOT</version>
    </dependency>
    
  </dependencies>
	<build>
		<plugins>
			<!-- Compiler 插件, 设定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>
					<showWarnings>true</showWarnings>
				</configuration>
			</plugin>
			<plugin> 
				<groupId>org.apache.maven.plugins</groupId> 
				<artifactId>maven-war-plugin</artifactId> 
				<version>2.1.1</version> 
				<configuration> 
				<webResources> 
				<resource> 
				<!-- this is relative to the pom.xml directory -->
				<directory>WebContent</directory> 
				</resource> 
				</webResources> 
				</configuration> 
			</plugin> 
		</plugins>
	</build>
</project>
