saic-ismart-cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.saic-ismart-api</groupId>
<artifactId>saic-ismart-cli</artifactId>
<version>0.3.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/maven-v4_0_0.xsd">
<parent>
<artifactId>saic-ismart-api-parent</artifactId>
<groupId>io.github.saic-ismart-api</groupId>
<version>0.3.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.saic-ismart-api</groupId>
<artifactId>saic-ismart-cli</artifactId>
<name>SAIC Java API - CLI</name>
<version>0.3.0</version>
<description>CLI Implementation of the SAIC API in Java</description>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<archive>
<manifest>
<mainClass>net.heberling.ismart.cli.GetData</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<finalName>${project.build.finalName}-full</finalName>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.10.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>junit-jupiter-api</artifactId>
<groupId>org.junit.jupiter</groupId>
</exclusion>
<exclusion>
<artifactId>junit-jupiter-params</artifactId>
<groupId>org.junit.jupiter</groupId>
</exclusion>
<exclusion>
<artifactId>junit-jupiter-engine</artifactId>
<groupId>org.junit.jupiter</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<properties>
<git.ref.slug>v0.3.0</git.ref.slug>
<git.commit.timestamp>1697913208</git.commit.timestamp>
<git.ref>v0.3.0</git.ref>
<git.commit.short>9b7a896</git.commit.short>
<git.commit.timestamp.datetime>2023-10-21T18:33:28Z</git.commit.timestamp.datetime>
<git.worktree>/home/runner/work/saic-java-client/saic-java-client</git.worktree>
<git.commit>9b7a896259d26d90c1ca8f947adb21ebcc2747dc</git.commit>
</properties>
</project>