<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <artifactId>cmdTools</artifactId>
  <packaging>jar</packaging>
  <name>Command tools</name>
  <description>Command utility tools.</description>

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

  <properties>
    <maven.compiler.target>17</maven.compiler.target>
    <maven.compiler.source>17</maven.compiler.source>
    <java.encoding>Cp1252</java.encoding>
  </properties>
  
  <dependencies>
  
    <!-- as this is tooling outside oktoflow, we can use usual dependencies here -->
  
    <dependency>
        <artifactId>support</artifactId>
        <groupId>de.iip-ecosphere.platform</groupId>
        <version>${project.version}</version>
    </dependency>    
    <dependency>
        <artifactId>support.commons-apache</artifactId>
        <groupId>de.iip-ecosphere.platform</groupId>
        <version>${project.version}</version>
    </dependency>    
    <dependency>
      <groupId>org.jsoup</groupId>
      <artifactId>jsoup</artifactId>
      <version>1.17.2</version>
    </dependency>
    <dependency>
       <groupId>com.fasterxml.jackson.core</groupId>
       <artifactId>jackson-databind</artifactId>
       <version>${com.fasterxml.jackson.version}</version>
    </dependency>    

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