airline
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.rvesse</groupId> <artifactId>airline</artifactId> <version>3.0.0</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.github.rvesse</groupId> <artifactId>airline-parent</artifactId> <version>3.0.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>airline</artifactId> <packaging>jar</packaging> <name>Airline - Library</name> <description>Java library provided an annotation-based framework for parsing Git like command line structures</description> <properties> <license.header.path>${project.parent.basedir}</license.header.path> <coveralls.skip>true</coveralls.skip> </properties> <dependencies> <dependency> <groupId>com.github.rvesse</groupId> <artifactId>airline-io</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.github.rvesse</groupId> <artifactId>airline-backcompat-javaxinject</artifactId> <version>${project.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>jakarta.inject</groupId> <artifactId>jakarta.inject-api</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> </dependency> <!-- for testing --> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build> </project>