Download airline-0.7.jar file

Introduction

You can download airline-0.7.jar in this page.

License

The Apache Software License, Version 2.0

Type List

airline-0.7.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/io.airlift/airline/pom.properties
META-INF/maven/io.airlift/airline/pom.xml
io.airlift.airline.Accessor.class
io.airlift.airline.Arguments.class
io.airlift.airline.Cli.class
io.airlift.airline.Command.class
io.airlift.airline.CommandGroupUsage.class
io.airlift.airline.CommandSuggester.class
io.airlift.airline.CommandUsage.class
io.airlift.airline.Context.class
io.airlift.airline.GlobalSuggester.class
io.airlift.airline.GlobalUsage.class
io.airlift.airline.GlobalUsageSummary.class
io.airlift.airline.GroupSuggester.class
io.airlift.airline.Help.class
io.airlift.airline.HelpOption.class
io.airlift.airline.Option.class
io.airlift.airline.OptionType.class
io.airlift.airline.ParseArgumentsMissingException.class
io.airlift.airline.ParseArgumentsUnexpectedException.class
io.airlift.airline.ParseCommandMissingException.class
io.airlift.airline.ParseCommandUnrecognizedException.class
io.airlift.airline.ParseException.class
io.airlift.airline.ParseOptionConversionException.class
io.airlift.airline.ParseOptionMissingException.class
io.airlift.airline.ParseOptionMissingValueException.class
io.airlift.airline.ParseState.class
io.airlift.airline.Parser.class
io.airlift.airline.ParserUtil.class
io.airlift.airline.SingleCommand.class
io.airlift.airline.SuggestCommand.class
io.airlift.airline.Suggester.class
io.airlift.airline.TypeConverter.class
io.airlift.airline.UsageHelper.class
io.airlift.airline.UsagePrinter.class
io.airlift.airline.model.ArgumentsMetadata.class
io.airlift.airline.model.CommandGroupMetadata.class
io.airlift.airline.model.CommandMetadata.class
io.airlift.airline.model.GlobalMetadata.class
io.airlift.airline.model.MetadataLoader.class
io.airlift.airline.model.OptionMetadata.class
io.airlift.airline.model.SuggesterMetadata.class

Pom

airline-0.7.pom file content.

<!--

    Copyright (C) 2010 the original author or authors.
    See the notice.md file distributed with this work for additional
    information regarding copyright ownership.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.

-->

<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>io.airlift</groupId>
        <artifactId>airbase</artifactId>
        <version>28</version>
    </parent>

    <artifactId>airline</artifactId>
    <packaging>jar</packaging>
    <version>0.7</version>

    <name>airline</name>
    <description>Java annotation-based framework for parsing Git like command line structures</description>
    <url>https://github.com/airlift/airline</url>

    <inceptionYear>2012</inceptionYear>

    <scm>
        <connection>scm:git:git@github.com:airlift/airline.git</connection>
        <url>http://github.com/airlift/airline/tree/master</url>
      <tag>0.7</tag>
  </scm>

    <properties>
        <air.check.skip-findbugs>true</air.check.skip-findbugs>
        <air.check.skip-pmd>true</air.check.skip-pmd>
        <air.check.skip-license>true</air.check.skip-license>
    </properties>

    <dependencies>
        <dependency>
            <groupId>javax.inject</groupId>
            <artifactId>javax.inject</artifactId>
        </dependency>

        <dependency>
            <groupId>com.google.code.findbugs</groupId>
            <artifactId>annotations</artifactId>
        </dependency>

        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
        </dependency>

        <!-- for testing -->
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

POM Entry

<dependency>
   <groupId>io.airlift</groupId>
   <artifactId>airline</artifactId>
   <version>0.7</version>
</dependency>

Download

If you think the following airline-0.7.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download airline-0.7.jar file




PreviousNext

Related