Download java-gitlab-api-1.1.4.jar file

Introduction

You can download java-gitlab-api-1.1.4.jar in this page.

License

The Apache Software License, Version 2.0

Type List

java-gitlab-api-1.1.4.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.gitlab/java-gitlab-api/pom.properties
META-INF/maven/org.gitlab/java-gitlab-api/pom.xml
org.gitlab.api.GitlabAPI.class
org.gitlab.api.http.GitlabHTTPRequestor.class
org.gitlab.api.http.Query.class
org.gitlab.api.models.GitlabAbstractMember.class
org.gitlab.api.models.GitlabAccessLevel.class
org.gitlab.api.models.GitlabBranch.class
org.gitlab.api.models.GitlabCommit.class
org.gitlab.api.models.GitlabGroup.class
org.gitlab.api.models.GitlabGroupMember.class
org.gitlab.api.models.GitlabIssue.class
org.gitlab.api.models.GitlabMergeRequest.class
org.gitlab.api.models.GitlabMilestone.class
org.gitlab.api.models.GitlabNamespace.class
org.gitlab.api.models.GitlabNote.class
org.gitlab.api.models.GitlabProject.class
org.gitlab.api.models.GitlabProjectHook.class
org.gitlab.api.models.GitlabProjectMember.class
org.gitlab.api.models.GitlabSession.class
org.gitlab.api.models.GitlabUser.class

Pom

java-gitlab-api-1.1.4.pom file content.

<?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">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.gitlab</groupId>
    <artifactId>java-gitlab-api</artifactId>
    <version>1.1.4</version>

    <name>Gitlab Java API Wrapper</name>
    <description>A Java wrapper for the Gitlab Git Hosting Server API</description>

    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <developers>
        <developer>
            <id>timols</id>
            <name>Tim Olshansky</name>
            <email>tim.olshansky@gmail.com</email>
        </developer>
    </developers>
    <contributors>
        <contributor>
            <name>Adam Retter</name>
            <email>adam.retter@googlemail.com</email>
            <organization>Evolved Binary Ltd</organization>
        </contributor>
    </contributors>

    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <connection>scm:git:ssh://github.com/timols/java-gitlab-api.git</connection>
        <developerConnection>scm:git:ssh://git@github.com/timols/java-gitlab-api.git</developerConnection>
        <url>https://github.com/timols/java-gitlab-api</url>
    </scm>

    <issueManagement>
        <system>Github</system>
        <url>https://github.com/timols/java-gitlab-api/issues</url>
    </issueManagement>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.codehaus.jackson</groupId>
            <artifactId>jackson-core-asl</artifactId>
            <version>1.9.9</version>
        </dependency>
        <dependency>
            <groupId>org.codehaus.jackson</groupId>
            <artifactId>jackson-mapper-asl</artifactId>
            <version>1.9.9</version>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>1.4</version>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
            <version>1.3</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.5.1</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

POM Entry

<dependency>
   <groupId>org.gitlab</groupId>
   <artifactId>java-gitlab-api</artifactId>
   <version>1.1.4</version>
</dependency>

Download

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



Download java-gitlab-api-1.1.4.jar file




PreviousNext

Related