<?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>kiServices.functions</artifactId>
  <packaging>jar</packaging>
  <name>AI services (functions)</name>
  <description>AI and data processing functions.</description>

  <parent>
     <groupId>de.iip-ecosphere.platform</groupId>
     <artifactId>platformDependencies</artifactId>
     <version>0.8.0</version>
     <relativePath/>
  </parent>

  <dependencies>
    <dependency>
      <groupId>de.iip-ecosphere.platform</groupId>
      <artifactId>support.aas</artifactId>
      <version>${project.version}</version>
    </dependency>     
    <dependency>
      <groupId>de.iip-ecosphere.platform</groupId>
      <artifactId>services.environment</artifactId>
      <version>${project.version}</version>
    </dependency>    

    <dependency>
      <artifactId>support.commons-apache</artifactId>
      <groupId>de.iip-ecosphere.platform</groupId>
      <scope>test</scope>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    
    <dependency>
        <groupId>com.google.zxing</groupId>
        <artifactId>core</artifactId>
        <version>3.3.0</version>
     </dependency>
    
    <dependency>
        <groupId>com.google.zxing</groupId>
        <artifactId>javase</artifactId>
        <version>3.3.0</version>
    </dependency>    
    
  </dependencies>
  <build>
  	<plugins>
  	<plugin>
      <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-assembly-plugin</artifactId>
           <version>3.1.1</version>
           <executions>
               <execution>
                   <id>python-qr-scan</id>
                   <phase>prepare-package</phase>
                   <goals>
                       <goal>single</goal>
                   </goals>
                   <configuration>
                       <descriptors>
                           <descriptor>src/main/assembly/pythonQrScanner.xml</descriptor>
                       </descriptors>
                       <outputDirectory>${project.build.outputDirectory}</outputDirectory>
                       <attach>false</attach>
                       <appendAssemblyId>false</appendAssemblyId>
                       <finalName>python-qr</finalName>
                   </configuration>
               </execution>
               <execution>
                   <id>python-qr-scan-mvn</id>
                   <phase>prepare-package</phase>
                   <goals>
                       <goal>single</goal>
                   </goals>
                   <configuration>
                       <descriptors>
                           <descriptor>src/main/assembly/pythonQrScanner.xml</descriptor>
                       </descriptors>
                       <outputDirectory>${project.build.directory}</outputDirectory>
                       <attach>true</attach>
                   </configuration>
               </execution>
           </executions>
       </plugin>
        
  	</plugins>
  </build>

</project>