<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>org.overlord.rtgov.integration</groupId>
	<artifactId>rtgov-btm-wildfly</artifactId>
	<packaging>war</packaging>
	<name>Overlord RTGov::Integration::BTM::Wildfly</name>

	<parent>
		<groupId>org.overlord.rtgov</groupId>
		<artifactId>integration</artifactId>
		<version>2.2.0.Alpha2</version>
		<relativePath>../../pom.xml</relativePath>
	</parent>
  
	<dependencies>
		<dependency>
			<groupId>org.overlord.rtgov.integration</groupId>
			<artifactId>rtgov-btm-gateway</artifactId>
		</dependency>

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

	<build>
		<finalName>${project.artifactId}</finalName>

		<plugins>
			<plugin>
				<artifactId>maven-war-plugin</artifactId>
				<!-- version>${version.maven-war-plugin}</version -->
				<configuration>
					<archive>
						<manifestEntries>
							<Dependencies>deployment.overlord-rtgov.war export services</Dependencies>
						</manifestEntries>
					</archive>
					<webResources>
						<resource>
							<filtering>false</filtering>
							<directory>${basedir}/src/main/webapp</directory>
						</resource>
					</webResources>
				</configuration>
			</plugin>

		</plugins>
	</build>

</project>
