convex-cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>world.convex</groupId> <artifactId>convex-cli</artifactId> <version>0.8.1</version> </dependency>
<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> <groupId>world.convex</groupId> <artifactId>convex</artifactId> <version>0.8.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>convex-cli</artifactId> <name>Convex CLI</name> <description>Convex command line interface</description> <url>https://convex.world</url> <properties> <picocli.version>4.7.6</picocli.version> <maven.compiler.release>21</maven.compiler.release> </properties> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.7.1</version> <configuration> <archive> <manifest> <mainClass>convex.cli.Main</mainClass> <!-- Used to add Maven implementation version --> <addDefaultImplementationEntries> true </addDefaultImplementationEntries> </manifest> </archive> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <outputDirectory>${project.build.directory}</outputDirectory> <!-- This creates full convex-cli.jar. We don't want it attached, just built --> <attach>false</attach> <appendAssemblyId>false</appendAssemblyId> <finalName>convex-cli</finalName> </configuration> <executions> <execution> <id>create-archive</id> <phase>install</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <!-- <plugin> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <version>2.2.4</version> <dependencies> <dependency> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctorj-pdf</artifactId> <version>${asciidoctorj.pdf.version}</version> </dependency> </dependencies> <executions> <execution> <id>convert-to-html</id> <phase>generate-resources</phase> <goals> <goal>process-asciidoc</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/html</outputDirectory> <attributes> <source-highlighter>coderay</source-highlighter> <imagesdir>./images</imagesdir> <toc>left</toc> <icons>font</icons> </attributes> </configuration> </execution> <execution> <id>generate-pdf-doc</id> <phase>generate-resources</phase> <goals> <goal>process-asciidoc</goal> </goals> <configuration> <backend>pdf</backend> <attributes> <source-highlighter>coderay</source-highlighter> <icons>font</icons> <pagenums/> <toc/> <idprefix/> <idseparator>-</idseparator> </attributes> </configuration> </execution> </executions> </plugin> --> </plugins> <pluginManagement> <plugins> </plugins> </pluginManagement> </build> <dependencies> <dependency> <groupId>world.convex</groupId> <artifactId>convex-peer</artifactId> <version>${convex.version}</version> </dependency> <dependency> <groupId>world.convex</groupId> <artifactId>convex-sodium</artifactId> <version>${convex.version}</version> </dependency> <dependency> <groupId>world.convex</groupId> <artifactId>convex-core</artifactId> <version>${convex.version}</version> </dependency> <dependency> <groupId>world.convex</groupId> <artifactId>convex-gui</artifactId> <version>${convex.version}</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>world.convex</groupId> <artifactId>convex-restapi</artifactId> <version>${convex.version}</version> </dependency> <dependency> <groupId>info.picocli</groupId> <artifactId>picocli</artifactId> <version>${picocli.version}</version> </dependency> <dependency> <groupId>com.pholser</groupId> <artifactId>junit-quickcheck-core</artifactId> <version>1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.pholser</groupId> <artifactId>junit-quickcheck-generators</artifactId> <version>1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <!-- optional becuase not needed by projects depending on this --> <optional>true</optional> </dependency> <!-- Don't really want this by default? <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>${logback.version}</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> </dependency> --> </dependencies> </project>