Download globodns-client-0.0.15.jar file

Introduction

You can download globodns-client-0.0.15.jar in this page.

License

Apache License, Version 2.0

Type List

globodns-client-0.0.15.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.globo.globodns/globodns-client/pom.properties
META-INF/maven/com.globo.globodns/globodns-client/pom.xml
com.globo.globodns.client.AbstractAPI.class
com.globo.globodns.client.GloboDns.class
com.globo.globodns.client.GloboDnsException.class
com.globo.globodns.client.MockGloboDns.class
com.globo.globodns.client.api.AuthAPI.class
com.globo.globodns.client.api.DomainAPI.class
com.globo.globodns.client.api.ExportAPI.class
com.globo.globodns.client.api.RecordAPI.class
com.globo.globodns.client.model.Authentication.class
com.globo.globodns.client.model.Domain.class
com.globo.globodns.client.model.ErrorMessage.class
com.globo.globodns.client.model.Export.class
com.globo.globodns.client.model.GloboDnsRoot.class
com.globo.globodns.client.model.Record.class
com.globo.globodns.client.model.User.class

Pom

globodns-client-0.0.15.pom file content.

<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>com.globo.globodns</groupId>
  <artifactId>globodns-client</artifactId>
  <version>0.0.15</version>
  <packaging>jar</packaging>

  <name>globodns-client</name>
  <description>Java client for GloboDNS</description>
  <url>https://github.com/globocom/GloboDNS-Client</url>

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

  <developers>
    <developer>
      <name>Daniel Vega Simoes</name>
      <email>daniel.simoes@corp.globo.com</email>
      <organization>Globo.com</organization>
      <organizationUrl>https://github.com/danielvsimoes</organizationUrl>
    </developer>
    <developer>
        <name>Luis Henrique Okama</name>
        <email>lokama@gmail.com</email>
        <organization>Globo.com</organization>
        <organizationUrl>https://github.com/lokama</organizationUrl>
    </developer>
    <developer>
        <name>Silvano Nogueira Buback</name>
        <email>snbuback@gmail.com</email>
        <organization>Globo.com</organization>
        <organizationUrl>https://github.com/snbuback</organizationUrl>
    </developer>
   </developers>

  <scm>
    <connection>scm:git:git@github.com:globocom/GloboDNS-Client.git</connection>
    <url>scm:git:git@github.com:globocom/GloboDNS-Client.git</url>
    <developerConnection>scm:git:git@github.com:globocom/GloboDNS-Client.git</developerConnection>
    <tag>0.0.15</tag>
  </scm>

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

  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>cobertura-maven-plugin</artifactId>
        <version>2.5.1</version>
        <configuration>
          <formats>
            <format>xml</format>
          </formats>
        </configuration>
        <executions>
          <execution>
            <phase>test</phase>
            <goals>
              <goal>cobertura</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.2.1</version>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.9.1</version>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.5</version>
        <configuration>
          <tagNameFormat>@{project.version}</tagNameFormat>
        </configuration>
      </plugin>
      <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-gpg-plugin</artifactId>
          <version>1.5</version>
          <executions>
            <execution>
              <id>sign-artifacts</id>
              <phase>verify</phase>
              <goals>
                <goal>sign</goal>
              </goals>
            </execution>
          </executions>
        </plugin>
    </plugins>
    <extensions>
      <extension>
        <groupId>org.apache.maven.wagon</groupId>
        <artifactId>wagon-webdav-jackrabbit</artifactId>
        <version>1.0-beta-7</version>
      </extension>
    </extensions>
  </build>

  <distributionManagement>
    <repository>
      <id>sonatype-repo</id>
      <name>Sonatype OSS Repository</name>
      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
    </repository>
    
    <snapshotRepository>
      <id>sonatype-snapshot</id>
      <name>Sonatype OSS Snapshot Repository</name>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
  </distributionManagement>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.google.http-client</groupId>
      <artifactId>google-http-client</artifactId>
      <version>1.17.0-rc</version>
    </dependency>
    <dependency>
      <groupId>com.google.http-client</groupId>
      <artifactId>google-http-client-jackson2</artifactId>
      <version>1.17.0-rc</version>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.9.5</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.7.5</version>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-simple</artifactId>
      <version>1.7.5</version>
      <optional>true</optional>
    </dependency>
  </dependencies>
</project>

POM Entry

<dependency>
   <groupId>com.globo.globodns</groupId>
   <artifactId>globodns-client</artifactId>
   <version>0.0.15</version>
</dependency>

Download

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



Download globodns-client-0.0.15.jar file




PreviousNext

Related