<?xml version="1.0" encoding="UTF-8" standalone="no"?><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>

  <artifactId>support</artifactId>
  <packaging>jar</packaging>
  <name>oktoflow support</name>
  <description>Basic support functions.</description>

  <parent>
     <groupId>de.iip-ecosphere.platform</groupId>
     <artifactId>platformDependencies</artifactId>
     <version>0.8.1-SNAPSHOT</version>
     <relativePath/>
  </parent>
  
  <properties>
    <maven.compiler.target>8</maven.compiler.target>
    <maven.compiler.source>8</maven.compiler.source>
    <iip.version>0.8.1-SNAPSHOT</iip.version> <!-- automatically repaced for releases -->
  </properties>

  <dependencies>
    <dependency>
      <groupId>de.iip-ecosphere.platform</groupId>
      <artifactId>support.boot</artifactId>
      <version>${iip.version}</version>
    </dependency>
  
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>de.iip-ecosphere.platform</groupId>
      <artifactId>support.log-slf4j-simple</artifactId>
      <version>${iip.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>de.iip-ecosphere.platform</groupId>
      <artifactId>support.commons-apache</artifactId>
      <version>${iip.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>de.iip-ecosphere.platform</groupId>
      <artifactId>support.yaml-snakeyaml</artifactId>
      <version>${iip.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>de.iip-ecosphere.platform</groupId>
      <artifactId>support.json-jackson</artifactId>
      <version>${iip.version}</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  
  <build>
    <plugins>
       <plugin>
         <artifactId>maven-compiler-plugin</artifactId>
         <version>${org.apache.maven.compiler.version}</version>
           <configuration>
             <!-- Must remain on Java 8 level -->
             <source>8</source>
             <target>8</target>
             <encoding>${java.encoding}</encoding>
           </configuration>
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
         <version>1.8</version>
 		 <executions>
	        <execution>
	            <id>test-plugin</id>
	            <phase>process-test-classes</phase>
	            <goals>
	                <goal>run</goal>
	            </goals>         
	            <configuration>
	              <target>
	                <jar destfile="target/pluginTest.jar">
					    <fileset dir="target/test-classes" includes="test/iip_ecosphere/platform/support/plugins/*.class"/>
                        <fileset dir="src/test/plugins/resources"/>
	                </jar>
	                <delete dir="target/test-classes/test/iip_ecosphere/platform/support/plugins"/>
	              </target>
                </configuration>
            </execution>
         </executions>
       </plugin>
     </plugins>
   </build>  

</project>