cli-tool
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>int.esa.nmf.sdk</groupId>
<artifactId>cli-tool</artifactId>
<version>5.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>int.esa.nmf</groupId>
<artifactId>nanosat-mo-framework</artifactId>
<version>5.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<groupId>int.esa.nmf.sdk</groupId>
<artifactId>cli-tool</artifactId>
<packaging>jar</packaging>
<name>ESA NMF SDK - CLI Tool</name>
<description>Provides a way to use provider's services from the command line</description>
<url>http://www.esa.int</url>
<organization>
<name>ESA</name>
<url>http://www.esa.int</url>
</organization>
<licenses>
<license>
<name>European Space Agency Public License (ESA-PL) Weak Copyleft – v2.4</name>
<url>https://raw.github.com/esa/nanosat-mo-framework/master/LICENCE.md</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/esa/nanosat-mo-framework.git</connection>
<url>https://github.com/esa/nanosat-mo-framework</url>
</scm>
<issueManagement>
<system>Gitlab</system>
<url>https://gitlab.com/esa/NMF/nmf-issues/-/issues</url>
</issueManagement>
<developers>
<developer>
<id>MarcelMikolajko</id>
<name>Marcel Mikołajko</name>
</developer>
<developer>
<id>CesarCoelho</id>
<name>César Coelho</name>
<url>https://github.com/CesarCoelho</url>
</developer>
</developers>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<assembly.mainClass>esa.mo.nmf.clitool.CLITool</assembly.mainClass>
</properties>
<dependencies>
<dependency>
<groupId>int.esa.nmf.core</groupId>
<artifactId>nmf-composites</artifactId>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
</plugin>
<!-- Activate assembly plugin, configured by parent to emit a jar with dependencies -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>