Download google-oauth-client-1.18.0.jar file

Introduction

You can download google-oauth-client-1.18.0.jar in this page.

License

Google Open Source

Type List

google-oauth-client-1.18.0.jar file has the following types.

META-INF/MANIFEST.MF
com.google.api.client.auth.oauth.AbstractOAuthGetToken.class
com.google.api.client.auth.oauth.OAuthAuthorizeTemporaryTokenUrl.class
com.google.api.client.auth.oauth.OAuthCallbackUrl.class
com.google.api.client.auth.oauth.OAuthCredentialsResponse.class
com.google.api.client.auth.oauth.OAuthGetAccessToken.class
com.google.api.client.auth.oauth.OAuthGetTemporaryToken.class
com.google.api.client.auth.oauth.OAuthHmacSigner.class
com.google.api.client.auth.oauth.OAuthParameters.class
com.google.api.client.auth.oauth.OAuthRsaSigner.class
com.google.api.client.auth.oauth.OAuthSigner.class
com.google.api.client.auth.oauth.package-info.class
com.google.api.client.auth.oauth2.AuthorizationCodeFlow.class
com.google.api.client.auth.oauth2.AuthorizationCodeRequestUrl.class
com.google.api.client.auth.oauth2.AuthorizationCodeResponseUrl.class
com.google.api.client.auth.oauth2.AuthorizationCodeTokenRequest.class
com.google.api.client.auth.oauth2.AuthorizationRequestUrl.class
com.google.api.client.auth.oauth2.BearerToken.class
com.google.api.client.auth.oauth2.BrowserClientRequestUrl.class
com.google.api.client.auth.oauth2.ClientCredentialsTokenRequest.class
com.google.api.client.auth.oauth2.ClientParametersAuthentication.class
com.google.api.client.auth.oauth2.Credential.class
com.google.api.client.auth.oauth2.CredentialRefreshListener.class
com.google.api.client.auth.oauth2.CredentialStore.class
com.google.api.client.auth.oauth2.CredentialStoreRefreshListener.class
com.google.api.client.auth.oauth2.DataStoreCredentialRefreshListener.class
com.google.api.client.auth.oauth2.PasswordTokenRequest.class
com.google.api.client.auth.oauth2.RefreshTokenRequest.class
com.google.api.client.auth.oauth2.StoredCredential.class
com.google.api.client.auth.oauth2.TokenErrorResponse.class
com.google.api.client.auth.oauth2.TokenRequest.class
com.google.api.client.auth.oauth2.TokenResponse.class
com.google.api.client.auth.oauth2.TokenResponseException.class
com.google.api.client.auth.openidconnect.IdToken.class
com.google.api.client.auth.openidconnect.IdTokenResponse.class
com.google.api.client.auth.openidconnect.IdTokenVerifier.class
com.google.api.client.auth.openidconnect.package-info.class

Pom

google-oauth-client-1.18.0.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>
  <parent>
    <groupId>com.google.oauth-client</groupId>
    <artifactId>google-oauth-client-parent</artifactId>
    <version>1.18.0-rc</version>
    <relativePath>../pom.xml</relativePath>
  </parent>
  <artifactId>google-oauth-client</artifactId>
  <name>Google OAuth Client Library for Java</name>
  <description>
    Google OAuth Client Library for Java. Functionality that works on all supported Java platforms,
    including Java 5 (or higher) desktop (SE) and web (EE), Android, and Google App Engine.
  </description>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <configuration>
          <links>
            <link>http://download.oracle.com/javase/1.5.0/docs/api/</link>
            <link>http://javadoc.google-http-java-client.googlecode.com/hg/${project.http.version}</link>
          </links>
          <doctitle>${project.name} ${project.version}</doctitle>
          <windowtitle>${project.artifactId} ${project.version}</windowtitle>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifest>
              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
            </manifest>
          </archive>
        </configuration>
        <executions>
          <execution>
            <id>jar</id>
            <phase>compile</phase>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <id>source-jar</id>
            <phase>compile</phase>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>com.google.http-client</groupId>
      <artifactId>google-http-client</artifactId>
    </dependency>
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
    </dependency>
    <dependency>
      <groupId>com.google.http-client</groupId>
      <artifactId>google-http-client-jackson</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava-jdk5</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>

POM Entry

<dependency>
   <groupId>com.google.oauth-client</groupId>
   <artifactId>google-oauth-client</artifactId>
   <version>1.18.0</version>
</dependency>

Download

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



Download google-oauth-client-1.18.0.jar file




PreviousNext

Related