<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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<groupId>com.github.skeychen</groupId>
	<artifactId>dswork-web</artifactId>
	<version>${v.dswork}</version>
	<name>dswork-web</name>
	<description>dswork-web</description>
	<url>https://github.com/skeychen/dswork</url>

	<parent>
		<groupId>com.github.skeychen</groupId>
		<artifactId>dswork-parent</artifactId>
		<version>8.8.1</version>
	</parent>

	<dependencies>
		<dependency><groupId>javax.servlet</groupId><artifactId>javax.servlet-api</artifactId><scope>provided</scope></dependency>
	</dependencies>

	<build>
		<sourceDirectory>./</sourceDirectory>
		<directory>E:/Workspaces/jar/pom/dswork-web</directory>
		<resources> 
		     <resource>
			     <directory>./</directory>
			     <includes><include>META-INF/services/javax.servlet.ServletContainerInitializer</include></includes>
			     <filtering>false</filtering>
		     </resource>
		 </resources>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<configuration>
					<archive>
						<addMavenDescriptor>false</addMavenDescriptor>
						<manifestFile>./MANIFEST.MF</manifestFile>
					</archive>
				</configuration>
			</plugin>
		</plugins>
	</build>

</project>
