cli-arguments-helloworld
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.zkejid.constructor</groupId> <artifactId>cli-arguments-helloworld</artifactId> <version>1.0.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"> <parent> <artifactId>cli-arguments</artifactId> <groupId>com.zkejid.constructor</groupId> <version>1.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>cli-arguments-helloworld</artifactId> <name>CLI Arguments module example application</name> <description>Example application with usage of cli-arguments API</description> <url>https://github.com/zkejidsconstructor/cli-arguments/tree/master/cli-arguments-helloworld</url> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.2.3</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <!-- no need in reduced pom, so excluded if from build --> <createDependencyReducedPom>false</createDependencyReducedPom> <transformers> <!-- transformer sets manifest entry for final artifact --> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>com.zkejid.constructor.cliarguments.example.Application</mainClass> </transformer> <!-- transformer merges services content from different artifacts --> <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.zkejid.constructor</groupId> <artifactId>cli-arguments-api</artifactId> </dependency> <dependency> <groupId>com.zkejid.constructor</groupId> <artifactId>cli-arguments-impl</artifactId> </dependency> <dependency> <groupId>com.zkejid.constructor</groupId> <artifactId>core-api</artifactId> </dependency> <dependency> <groupId>com.zkejid.constructor</groupId> <artifactId>core-impl</artifactId> </dependency> <dependency> <groupId>com.zkejid.constructor</groupId> <artifactId>javasdk-system-api</artifactId> </dependency> <dependency> <groupId>com.zkejid.constructor</groupId> <artifactId>javasdk-system-impl</artifactId> </dependency> <dependency> <groupId>com.zkejid.constructor</groupId> <artifactId>string-value-api</artifactId> </dependency> <dependency> <groupId>com.zkejid.constructor</groupId> <artifactId>string-value-impl</artifactId> </dependency> </dependencies> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Ivan Panfilov</name> <email>developer@zkejid.com</email> <organization>Zkejid</organization> <organizationUrl>https://github.com/zkejid</organizationUrl> </developer> </developers> </project>