<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.draeger.medical</groupId>
	<artifactId>openSDC</artifactId>
	<version>1.0-BETA_01</version>
    <relativePath>../openSDC/pom.xml</relativePath>
  </parent-->
  <groupId>com.draeger.medical</groupId>
  <artifactId>JDPWS</artifactId>
  <version>OR.NET-BETA_06-SNAPSHOT</version>
  <packaging>jar</packaging>

  <distributionManagement>
    <snapshotRepository>
    <id>isp</id>
    <url>http://sourcecode.isp.uni-luebeck.de/nexus/content/repositories/snapshots</url>
    <uniqueVersion>Hallo Welt</uniqueVersion>
    </snapshotRepository>
  </distributionManagement>

  <name>JDPWS</name>
  <url>https://sourceforge.net/projects/opensdc/</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	<groupId>${project.groupId}</groupId>
    <artifactId>${project.artifactId}</artifactId>
    <version>${project.version}</version>
    <packaging>${project.packaging}</packaging>
    <file>target/${project.artifactId}-${project.version}.${project.packaging}</file>
  </properties>
  
 
  <dependencies>
	<dependency>
		<groupId>xpp3</groupId>
		<artifactId>xpp3</artifactId>
		<version>1.1.4c</version>
	</dependency>
	<dependency>
		<groupId>commons-pool</groupId>
		<artifactId>commons-pool</artifactId>
		<version>1.6</version>
	</dependency>
  </dependencies>
  <build> 
	<plugins> 
		<plugin> 
			<groupId>org.apache.maven.plugins</groupId> 
			<artifactId>maven-compiler-plugin</artifactId>
			<version>3.1</version> 
			<configuration> 
				<source>1.6</source> 
				<target>1.6</target>
				<compilerArguments>
					<Xlint />
				</compilerArguments> 
			</configuration> 
		</plugin> 
		<plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-source-plugin</artifactId>
			<version>2.3</version>
					<executions>
					<execution>
						<phase>package</phase>
						<goals>
							<goal>jar-no-fork</goal>
						</goals>
					</execution>
				  </executions>
		</plugin>
		<!--plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-install-plugin</artifactId>
			<version>2.5.1</version>
			      <executions>
					<execution>
						<phase>install</phase>
						<goals>
							<goal>install-file</goal>
						</goals>
					</execution>
				  </executions>
		</plugin-->
	</plugins> 
  </build> 
</project>
