<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/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>com.suncode</groupId>
		<artifactId>plusworkflow-plugin-parent</artifactId>
		<version>4.2.1</version>
	</parent>

	<groupId>com.suncode.plugin</groupId>
	<artifactId>plus-directory-monitor</artifactId>
	<version>1.0-SNAPSHOT</version>

	<packaging>bundle</packaging>

	<properties>
		<pluginconfiguration.version>4.0.3</pluginconfiguration.version>
	</properties>


	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>org.codehaus.woodstox</groupId>
				<artifactId>stax2-api</artifactId>
				<version>4.2.2</version>
			</dependency>
		</dependencies>
	</dependencyManagement>

	<dependencies>
		<dependency>
			<groupId>com.suncode</groupId>
			<artifactId>plusworkflow-api</artifactId>
			<scope>provided</scope>
		</dependency>
		<dependency>
            <groupId>com.suncode.plugin</groupId>
            <artifactId>plugin-configuration-manager</artifactId>
            <version>${pluginconfiguration.version}</version>
            <scope>provided</scope>
			<exclusions>
				<exclusion>
					<groupId>*</groupId>
					<artifactId>*</artifactId>
				</exclusion>
			</exclusions>
        </dependency>
		
		<dependency>
			<groupId>sun-jaf</groupId>
			<artifactId>activation</artifactId>
			<version>1.1</version>
		</dependency>
		<dependency>
			<groupId>commons-discovery</groupId>
			<artifactId>commons-discovery</artifactId>
		</dependency>
		<dependency>
			<groupId>commons-io</groupId>
			<artifactId>commons-io</artifactId>
		</dependency>
		<dependency>
			<groupId>commons-logging</groupId>
			<artifactId>commons-logging</artifactId>
		</dependency>
		<dependency>
			<groupId>javax.mail</groupId>
			<artifactId>mail</artifactId>
			<version>1.4</version>
		</dependency>
		<dependency>
			<groupId>tanukisoft</groupId>
			<artifactId>wrapper</artifactId>
			<version>3.2.3</version>
		</dependency>

		<dependency>
			<groupId>jakarta.xml.ws</groupId>
			<artifactId>jakarta.xml.ws-api</artifactId>
			<version>4.0.0</version>
		</dependency>

		<dependency>
			<groupId>com.sun.xml.ws</groupId>
			<artifactId>jaxws-rt</artifactId>
			<version>4.0.4</version>
		</dependency>

		<dependency>
			<groupId>org.glassfish.jaxb</groupId>
			<artifactId>jaxb-runtime</artifactId>
			<version>4.0.3</version>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>com.sun.xml.ws</groupId>
				<artifactId>jaxws-maven-plugin</artifactId>
				<version>4.0.2</version>
				<configuration>
					<wsdlLocation>http://localhost:8080/PlusWorkflow/services/*</wsdlLocation>
					<wsdlDirectory>src/main/wsdlFiles</wsdlDirectory>
					<wsdlFiles>
						<wsdlFile>ReleaseService.wsdl</wsdlFile>
					</wsdlFiles>

					<sourceDestDir>src/main/java</sourceDestDir>
					<packageName>com.plusmpm.directorymonitor.ws</packageName>
					<keep>true</keep>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>
