pax_global_header 0000666 0000000 0000000 00000000064 13506514643 0014521 g ustar 00root root 0000000 0000000 52 comment=99f046cad6917e4cd47f06b2dbe29cc6f5845379
google-api-java-client-1.27.1/ 0000775 0000000 0000000 00000000000 13506514643 0016027 5 ustar 00root root 0000000 0000000 google-api-java-client-1.27.1/.github/ 0000775 0000000 0000000 00000000000 13506514643 0017367 5 ustar 00root root 0000000 0000000 google-api-java-client-1.27.1/.github/CODEOWNERS 0000664 0000000 0000000 00000000031 13506514643 0020754 0 ustar 00root root 0000000 0000000 * @googleapis/yoshi-java
google-api-java-client-1.27.1/.github/ISSUE_TEMPLATE.md 0000664 0000000 0000000 00000000762 13506514643 0022101 0 ustar 00root root 0000000 0000000 Thanks for stopping by to let us know something could be better!
Please be sure to include as much information as possible:
#### Environment details
- OS:
- Java version:
- google-api-java-client version:
#### Steps to reproduce
1. ?
2. ?
#### Stacktrace
```
Any relevant stacktrace here.
```
#### External references such as API reference guides used
- ?
#### Any additional information below
Making sure to follow these steps will guarantee the quickest resolution possible.
Thanks!
google-api-java-client-1.27.1/.github/PULL_REQUEST_TEMPLATE.md 0000664 0000000 0000000 00000000236 13506514643 0023171 0 ustar 00root root 0000000 0000000 Fixes #
* When fetching a token, any thrown {@link GoogleAuthException} would be wrapped:
*
* Account manager wrapper for Google accounts.
*
* @since 1.11
* @author Yaniv Inbar
*/
@Beta
public final class GoogleAccountManager {
/** Google account type. */
public static final String ACCOUNT_TYPE = "com.google";
/** Account manager. */
private final AccountManager manager;
/**
* @param accountManager account manager
*/
public GoogleAccountManager(AccountManager accountManager) {
this.manager = Preconditions.checkNotNull(accountManager);
}
/**
* @param context context from which to retrieve the account manager
*/
public GoogleAccountManager(Context context) {
this(AccountManager.get(context));
}
/**
* Returns the account manager.
*
* @since 1.8
*/
public AccountManager getAccountManager() {
return manager;
}
/**
* Returns all Google accounts.
*
* @return array of Google accounts
*/
public Account[] getAccounts() {
return manager.getAccountsByType("com.google");
}
/**
* Returns the Google account of the given {@link Account#name}.
*
* @param accountName Google account name or {@code null} for {@code null} result
* @return Google account or {@code null} for none found or for {@code null} input
*/
public Account getAccountByName(String accountName) {
if (accountName != null) {
for (Account account : getAccounts()) {
if (accountName.equals(account.name)) {
return account;
}
}
}
return null;
}
/**
* Invalidates the given Google auth token by removing it from the account manager's cache (if
* necessary) for example if the auth token has expired or otherwise become invalid.
*
* @param authToken auth token
*/
public void invalidateAuthToken(String authToken) {
manager.invalidateAuthToken(ACCOUNT_TYPE, authToken);
}
}
package-info.java 0000664 0000000 0000000 00000001560 13506514643 0044362 0 ustar 00root root 0000000 0000000 google-api-java-client-1.27.1/google-api-client-android/src/main/java/com/google/api/client/googleapis/extensions/android/accounts /*
* Copyright 2012 Google Inc.
*
* 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.
*/
/**
* {@link com.google.api.client.util.Beta}
* Utilities for Account Manager for Google accounts on Android Eclair (SDK 2.1) and later.
*
* @since 1.11
* @author Yaniv Inbar
*/
@com.google.api.client.util.Beta
package com.google.api.client.googleapis.extensions.android.accounts;
gms/ 0000775 0000000 0000000 00000000000 13506514643 0040140 5 ustar 00root root 0000000 0000000 google-api-java-client-1.27.1/google-api-client-android/src/main/java/com/google/api/client/googleapis/extensions/android auth/ 0000775 0000000 0000000 00000000000 13506514643 0041101 5 ustar 00root root 0000000 0000000 google-api-java-client-1.27.1/google-api-client-android/src/main/java/com/google/api/client/googleapis/extensions/android/gms GoogleAccountCredential.java 0000664 0000000 0000000 00000022657 13506514643 0046504 0 ustar 00root root 0000000 0000000 google-api-java-client-1.27.1/google-api-client-android/src/main/java/com/google/api/client/googleapis/extensions/android/gms/auth /*
* 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.
*/
package com.google.api.client.googleapis.extensions.android.gms.auth;
import android.accounts.Account;
import android.content.Context;
import android.content.Intent;
import com.google.android.gms.auth.GoogleAuthException;
import com.google.android.gms.auth.GoogleAuthUtil;
import com.google.android.gms.auth.GooglePlayServicesAvailabilityException;
import com.google.android.gms.auth.UserRecoverableAuthException;
import com.google.android.gms.common.AccountPicker;
import com.google.api.client.googleapis.extensions.android.accounts.GoogleAccountManager;
import com.google.api.client.http.HttpExecuteInterceptor;
import com.google.api.client.http.HttpRequest;
import com.google.api.client.http.HttpRequestInitializer;
import com.google.api.client.http.HttpResponse;
import com.google.api.client.http.HttpUnsuccessfulResponseHandler;
import com.google.api.client.util.BackOff;
import com.google.api.client.util.BackOffUtils;
import com.google.api.client.util.Beta;
import com.google.api.client.util.ExponentialBackOff;
import com.google.api.client.util.Joiner;
import com.google.api.client.util.Preconditions;
import com.google.api.client.util.Sleeper;
import java.io.IOException;
import java.util.Collection;
/**
* {@link Beta}
* Manages authorization and account selection for Google accounts.
*
*
*
*
* Upgrade warning: in prior version 1.14 exponential back-off was enabled by default when I/O * exception was thrown inside {@link #getToken}, but starting with version 1.15 you need to call * {@link #setBackOff} with {@link ExponentialBackOff} to enable it. *
* * @since 1.12 * @author Yaniv Inbar */ @Beta public class GoogleAccountCredential implements HttpRequestInitializer { /** Context. */ final Context context; /** Scope to use on {@link GoogleAuthUtil#getToken}. */ final String scope; /** Google account manager. */ private final GoogleAccountManager accountManager; /** * Selected Google account name (e-mail address), for example {@code "johndoe@gmail.com"}, or * {@code null} for none. */ private String accountName; /** Selected Google account or {@code null} for none. */ private Account selectedAccount; /** Sleeper. */ private Sleeper sleeper = Sleeper.DEFAULT; /** * Back-off policy which is used when an I/O exception is thrown inside {@link #getToken} or * {@code null} for none. */ private BackOff backOff; /** * @param context context * @param scope scope to use on {@link GoogleAuthUtil#getToken} */ public GoogleAccountCredential(Context context, String scope) { accountManager = new GoogleAccountManager(context); this.context = context; this.scope = scope; } /** * Constructs a new instance using OAuth 2.0 scopes. * * @param context context * @param scopes non empty OAuth 2.0 scope list * @return new instance * * @since 1.15 */ public static GoogleAccountCredential usingOAuth2(Context context, Collection* Caller must ensure the given Google account exists. *
*/ public final GoogleAccountCredential setSelectedAccount(Account selectedAccount) { this.selectedAccount = selectedAccount; this.accountName = selectedAccount == null ? null : selectedAccount.name; return this; } @Override public void initialize(HttpRequest request) { RequestHandler handler = new RequestHandler(); request.setInterceptor(handler); request.setUnsuccessfulResponseHandler(handler); } /** Returns the context. */ public final Context getContext() { return context; } /** Returns the scope to use on {@link GoogleAuthUtil#getToken}. */ public final String getScope() { return scope; } /** Returns the Google account manager. */ public final GoogleAccountManager getGoogleAccountManager() { return accountManager; } /** Returns all Google accounts or {@code null} for none. */ public final Account[] getAllAccounts() { return accountManager.getAccounts(); } /** Returns the selected Google account or {@code null} for none. */ public final Account getSelectedAccount() { return selectedAccount; } /** * Returns the back-off policy which is used when an I/O exception is thrown inside * {@link #getToken} or {@code null} for none. * * @since 1.15 */ public BackOff getBackOff() { return backOff; } /** * Sets the back-off policy which is used when an I/O exception is thrown inside {@link #getToken} * or {@code null} for none. * * @since 1.15 */ public GoogleAccountCredential setBackOff(BackOff backOff) { this.backOff = backOff; return this; } /** * Returns the sleeper. * * @since 1.15 */ public final Sleeper getSleeper() { return sleeper; } /** * Sets the sleeper. The default value is {@link Sleeper#DEFAULT}. * * @since 1.15 */ public final GoogleAccountCredential setSleeper(Sleeper sleeper) { this.sleeper = Preconditions.checkNotNull(sleeper); return this; } /** * Returns the selected Google account name (e-mail address), for example * {@code "johndoe@gmail.com"}, or {@code null} for none. */ public final String getSelectedAccountName() { return accountName; } /** * Returns an intent to show the user to select a Google account, or create a new one if there are * none on the device yet. * ** Must be run from the main UI thread. *
*/ public final Intent newChooseAccountIntent() { return AccountPicker.newChooseAccountIntent(selectedAccount, null, new String[] {GoogleAccountManager.ACCOUNT_TYPE}, true, null, null, null, null); } /** * Returns an OAuth 2.0 access token. * ** Must be run from a background thread, not the main UI thread. *
*/ public String getToken() throws IOException, GoogleAuthException { if (backOff != null) { backOff.reset(); } while (true) { try { return GoogleAuthUtil.getToken(context, accountName, scope); } catch (IOException e) { // network or server error, so retry using back-off policy try { if (backOff == null || !BackOffUtils.next(sleeper, backOff)) { throw e; } } catch (InterruptedException e2) { // ignore } } } } @Beta class RequestHandler implements HttpExecuteInterceptor, HttpUnsuccessfulResponseHandler { /** Whether we've received a 401 error code indicating the token is invalid. */ boolean received401; String token; @Override public void intercept(HttpRequest request) throws IOException { try { token = getToken(); request.getHeaders().setAuthorization("Bearer " + token); } catch (GooglePlayServicesAvailabilityException e) { throw new GooglePlayServicesAvailabilityIOException(e); } catch (UserRecoverableAuthException e) { throw new UserRecoverableAuthIOException(e); } catch (GoogleAuthException e) { throw new GoogleAuthIOException(e); } } @Override public boolean handleResponse( HttpRequest request, HttpResponse response, boolean supportsRetry) { if (response.getStatusCode() == 401 && !received401) { received401 = true; GoogleAuthUtil.invalidateToken(context, token); return true; } return false; } } } GoogleAuthIOException.java 0000664 0000000 0000000 00000002725 13506514643 0046117 0 ustar 00root root 0000000 0000000 google-api-java-client-1.27.1/google-api-client-android/src/main/java/com/google/api/client/googleapis/extensions/android/gms/auth /* * 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. */ package com.google.api.client.googleapis.extensions.android.gms.auth; import com.google.android.gms.auth.GoogleAuthException; import com.google.api.client.util.Beta; import com.google.api.client.util.Preconditions; import java.io.IOException; /** * {@link Beta}* Use {@link #getCause()} to get the wrapped {@link GoogleAuthException}. *
* * @since 1.12 * @author Yaniv Inbar */ @Beta public class GoogleAuthIOException extends IOException { private static final long serialVersionUID = 1L; /** * @param wrapped wrapped {@link GoogleAuthException} * @since 1.21.0 */ public GoogleAuthIOException(GoogleAuthException wrapped) { initCause(Preconditions.checkNotNull(wrapped)); } @Override public GoogleAuthException getCause() { return (GoogleAuthException) super.getCause(); } } GooglePlayServicesAvailabilityIOException.java 0000664 0000000 0000000 00000004542 13506514643 0052161 0 ustar 00root root 0000000 0000000 google-api-java-client-1.27.1/google-api-client-android/src/main/java/com/google/api/client/googleapis/extensions/android/gms/auth /* * 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. */ package com.google.api.client.googleapis.extensions.android.gms.auth; import android.app.Activity; import com.google.android.gms.auth.GooglePlayServicesAvailabilityException; import com.google.android.gms.common.GooglePlayServicesUtil; import com.google.api.client.util.Beta; import java.io.IOException; /** * {@link Beta}* Use {@link #getConnectionStatusCode()} to display the error dialog. Alternatively, use * {@link #getCause()} to get the wrapped {@link GooglePlayServicesAvailabilityException}. Example * usage: *
* *} catch (final GooglePlayServicesAvailabilityIOException availabilityException) { myActivity.runOnUiThread(new Runnable() { public void run() { Dialog dialog = GooglePlayServicesUtil.getErrorDialog( availabilityException.getConnectionStatusCode(), myActivity, MyActivity.REQUEST_GOOGLE_PLAY_SERVICES); dialog.show(); } }); ** * @since 1.12 * @author Yaniv Inbar */ @Beta public class GooglePlayServicesAvailabilityIOException extends UserRecoverableAuthIOException { private static final long serialVersionUID = 1L; /** * @since 1.21.0 */ public GooglePlayServicesAvailabilityIOException( GooglePlayServicesAvailabilityException wrapped) { super(wrapped); } @Override public GooglePlayServicesAvailabilityException getCause() { return (GooglePlayServicesAvailabilityException) super.getCause(); } /** * Returns the error code to use with * {@link GooglePlayServicesUtil#getErrorDialog(int, Activity, int)}. */ public final int getConnectionStatusCode() { return getCause().getConnectionStatusCode(); } } UserRecoverableAuthIOException.java 0000664 0000000 0000000 00000004002 13506514643 0047761 0 ustar 00root root 0000000 0000000 google-api-java-client-1.27.1/google-api-client-android/src/main/java/com/google/api/client/googleapis/extensions/android/gms/auth /* * 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. */ package com.google.api.client.googleapis.extensions.android.gms.auth; import android.app.Activity; import android.content.Intent; import com.google.android.gms.auth.UserRecoverableAuthException; import com.google.api.client.util.Beta; import java.io.IOException; /** * {@link Beta}
* Use {@link #getIntent()} to allow user interaction to recover. Alternatively, use * {@link #getCause()} to get the wrapped {@link UserRecoverableAuthException}. Example usage: *
* *} catch (UserRecoverableAuthIOException userRecoverableException) { myActivity.startActivityForResult( userRecoverableException.getIntent(), MyActivity.REQUEST_AUTHORIZATION); } ** * @since 1.12 * @author Yaniv Inbar */ @Beta public class UserRecoverableAuthIOException extends GoogleAuthIOException { private static final long serialVersionUID = 1L; /** * @since 1.21.0 */ public UserRecoverableAuthIOException(UserRecoverableAuthException wrapped) { super(wrapped); } @Override public UserRecoverableAuthException getCause() { return (UserRecoverableAuthException) super.getCause(); } /** * Returns the {@link Intent} that when supplied to * {@link Activity#startActivityForResult(Intent, int)} will allow user intervention. */ public final Intent getIntent() { return getCause().getIntent(); } } package-info.java 0000664 0000000 0000000 00000001554 13506514643 0044275 0 ustar 00root root 0000000 0000000 google-api-java-client-1.27.1/google-api-client-android/src/main/java/com/google/api/client/googleapis/extensions/android/gms/auth /* * 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. */ /** * {@link com.google.api.client.util.Beta}
* Intercepts the request by using the access token obtained from * {@link AppIdentityService#getAccessToken(Iterable)}. *
* ** Sample usage: *
* *public static HttpRequestFactory createRequestFactory( HttpTransport transport, JsonFactory jsonFactory, TokenResponse tokenResponse) { return transport.createRequestFactory( new AppIdentityCredential("https://www.googleapis.com/auth/urlshortener")); } ** *
* Implementation is immutable and thread-safe. *
* * @since 1.7 * @author Yaniv Inbar */ public class AppIdentityCredential implements HttpRequestInitializer, HttpExecuteInterceptor { /** App Identity Service that provides the access token. */ private final AppIdentityService appIdentityService; /** OAuth scopes (unmodifiable). */ private final Collection* Implementation is not thread-safe. *
* * @since 1.12 */ public static class Builder { /** * App Identity Service that provides the access token or {@code null} to use * {@link AppIdentityServiceFactory#getAppIdentityService()}. */ AppIdentityService appIdentityService; /** OAuth scopes (unmodifiable). */ final Collection* Overriding is only supported for the purpose of calling the super implementation and changing * the return type, but nothing else. *
*/ public Builder setAppIdentityService(AppIdentityService appIdentityService) { this.appIdentityService = appIdentityService; return this; } /** * Returns a new {@link AppIdentityCredential}. */ public AppIdentityCredential build() { return new AppIdentityCredential(this); } /** * Returns the OAuth scopes (unmodifiable). * * @since 1.14 */ public final Collection* In order to use this servlet you need to register the servlet in your web.xml. You may optionally * extend {@link AppEngineNotificationServlet} with custom behavior. *
* ** It is a simple wrapper around {@link WebhookUtils#processWebhookNotification(HttpServletRequest, * HttpServletResponse, DataStoreFactory)} that uses * {@link AppEngineDataStoreFactory#getDefaultInstance()}, so you may alternatively call that method * instead from your {@link HttpServlet#doPost} with no loss of functionality. *
* * Sample web.xml setup: * *{@literal <}servlet{@literal >} {@literal <}servlet-name{@literal >}AppEngineNotificationServlet{@literal <}/servlet-name{@literal >} {@literal <}servlet-class{@literal >}com.google.api.client.googleapis.extensions.appengine.notifications.AppEngineNotificationServlet{@literal <}/servlet-class{@literal >} {@literal <}/servlet{@literal >} {@literal <}servlet-mapping{@literal >} {@literal <}servlet-name{@literal >}AppEngineNotificationServlet{@literal <}/servlet-name{@literal >} {@literal <}url-pattern{@literal >}/notifications{@literal <}/url-pattern{@literal >} {@literal <}/servlet-mapping{@literal >} ** * @author Yaniv Inbar * @since 1.16 */ @Beta public class AppEngineNotificationServlet extends HttpServlet { private static final long serialVersionUID = 1L; @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { WebhookUtils.processWebhookNotification( req, resp, AppEngineDataStoreFactory.getDefaultInstance()); } } package-info.java 0000664 0000000 0000000 00000001570 13506514643 0046271 0 ustar 00root root 0000000 0000000 google-api-java-client-1.27.1/google-api-client-appengine/src/main/java/com/google/api/client/googleapis/extensions/appengine/notifications /* * Copyright 2013 Google Inc. * * 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. */ /** * {@link com.google.api.client.util.Beta}
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.api-client | google-api-client | ${project.version} | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-android | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.android | android | 4.1.1.4 | jar | Apache 2.0 |
com.google.android.google-play-services | google-play-services | 1 | jar | - |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
org.json | json | 20080701 | jar | provided without support or warranty |
org.khronos | opengl-api | gl1.1-android-2.1_r1 | jar | Apache 2.0 |
xerces | xmlParserAPIs | 2.6.2 | jar | - |
xpp3 | xpp3 | 1.1.4c | jar | Indiana University Extreme! Lab Software License, vesion 1.1.1-Public Domain-Apache Software License, version 1.1 |
Apache Software License, version 1.1: MXP1: Xml Pull Parser 3rd Edition (XPP3)
Public Domain: MXP1: Xml Pull Parser 3rd Edition (XPP3)
Unknown: google-play-services, xmlParserAPIs
Apache License, Version 2.0: Apache Commons Codec, Apache HttpClient, Apache HttpCore
provided without support or warranty: JSON (JavaScript Object Notation)
Apache 2.0: Google Android Java ME Library (Khronos), Google Android Library
The Apache Software License, Version 2.0: Android Platform Extensions to the Google APIs Client Library for Java., Android Platform Extensions to the Google HTTP Client Library for Java., Commons Logging, FindBugs-jsr305, Google APIs Client Library for Java, Google HTTP Client Library for Java, Google OAuth Client Library for Java, Guava: Google Core Libraries for Java, J2ObjC Annotations, Jackson 2 extensions to the Google HTTP Client Library for Java., Jackson-core
Indiana University Extreme! Lab Software License, vesion 1.1.1: MXP1: Xml Pull Parser 3rd Edition (XPP3)
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jackson-core-2.9.2.jar | 313.71 kB | 130 | 105 | 11 | 1.6 | debug |
android-4.1.1.4.jar | 12.35 MB | 7,264 | 1,698 | 71 | 1.5 | debug |
google-play-services-1.jar | 836.03 kB | 808 | 776 | 21 | 1.6 | release |
google-api-client-${project.version}.jar | 199.67 kB | 141 | 110 | 22 | 1.6 | debug |
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-android-${project.http.version}.jar | 11.86 kB | 21 | 11 | 3 | 1.6 | debug |
google-http-client-jackson2-${project.http.version}.jar | 6.58 kB | 13 | 5 | 1 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
google-oauth-client-${project.oauth.version}.jar | 61.64 kB | 57 | 47 | 3 | 1.6 | debug |
commons-codec-1.10.jar | 277.52 kB | 238 | 92 | 6 | 1.6 | debug |
commons-logging-1.1.1.jar | 59.26 kB | 42 | 28 | 2 | 1.1 | debug |
httpclient-4.5.5.jar | 748.17 kB | 508 | 467 | 24 | 1.6 | debug |
httpcore-4.4.9.jar | 317.87 kB | 282 | 252 | 17 | 1.6 | debug |
json-20080701.jar | 36.99 kB | 26 | 17 | 1 | 1.3 | debug |
opengl-api-gl1.1-android-2.1_r1.jar | 18.06 kB | 25 | 13 | 2 | 1.5 | debug |
xmlParserAPIs-2.6.2.jar | 121.80 kB | 238 | 207 | 17 | 1.1 | release |
xpp3-1.1.4c.jar | 117.25 kB | 78 | 56 | 13 | 1.1 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
19 | 18.01 MB | 12,007 | 5,945 | 252 | 1.6 | 17 |
compile: 13 | compile: 4.56 MB | compile: 3,568 | compile: 3,178 | compile: 127 | - | compile: 13 |
provided: 6 | provided: 13.45 MB | provided: 8,439 | provided: 2,767 | provided: 125 | - | provided: 4 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.fasterxml.jackson.core:jackson-core:jar:2.9.2 | - | - | - |
com.google.android:android:jar:4.1.1.4 | - | - | - |
com.google.android.google-play-services:google-play-services:jar:1 | - | - | - |
com.google.api-client:google-api-client:jar:${project.version} | - | - | - |
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.guava:guava:jar:20.0 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-android:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-jackson2:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
com.google.oauth-client:google-oauth-client:jar:${project.oauth.version} | - | - | - |
commons-codec:commons-codec:jar:1.10 | - | - | - |
commons-logging:commons-logging:jar:1.1.1 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.5 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.9 | - | - | - |
org.json:json:jar:20080701 | - | - | - |
org.khronos:opengl-api:jar:gl1.1-android-2.1_r1 | - | - | - |
xerces:xmlParserAPIs:jar:2.6.2 | - | - | - |
xpp3:xpp3:jar:1.1.4c | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
19 (compile: 13, provided: 6) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.api-client | google-api-client | ${project.version} | jar | The Apache Software License, Version 2.0 |
com.google.api-client | google-api-client-servlet | ${project.version} | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-appengine | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
com.google.oauth-client | google-oauth-client-appengine | ${project.oauth.version} | jar | The Apache Software License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.appengine | appengine-api-labs | 1.7.7 | jar | Google App Engine Terms of Service |
com.google.appengine | appengine-api-stubs | 1.7.7 | jar | Google App Engine Terms of Service |
com.google.appengine | appengine-testing | 1.7.7 | jar | Google App Engine Terms of Service |
com.google.guava | guava | 20.0 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-jackson2 | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.appengine | appengine-api-1.0-sdk | 1.7.7 | jar | Google App Engine Terms of Service |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.code.findbugs | jsr305 | 3.0.2 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-jdo | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
com.google.j2objc | j2objc-annotations | 1.1 | jar | The Apache Software License, Version 2.0 |
com.google.oauth-client | google-oauth-client | ${project.oauth.version} | jar | The Apache Software License, Version 2.0 |
com.google.oauth-client | google-oauth-client-servlet | ${project.oauth.version} | jar | The Apache Software License, Version 2.0 |
commons-codec | commons-codec | 1.10 | jar | Apache License, Version 2.0 |
commons-logging | commons-logging | 1.2 | jar | The Apache Software License, Version 2.0 |
javax.jdo | jdo2-api | 2.3-eb | jar | Apache 2 |
javax.servlet | servlet-api | 2.5 | jar | - |
javax.transaction | transaction-api | 1.1 | jar | - |
org.apache.httpcomponents | httpclient | 4.5.5 | jar | Apache License, Version 2.0 |
org.apache.httpcomponents | httpcore | 4.4.9 | jar | Apache License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.fasterxml.jackson.core | jackson-core | 2.9.2 | jar | The Apache Software License, Version 2.0 |
Google App Engine Terms of Service: appengine-api-1.0-sdk, appengine-api-labs, appengine-api-stubs, appengine-testing
Apache 2: JDO2 API
Unknown: servlet-api, transaction-api
Apache License, Version 2.0: Apache Commons Codec, Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, FindBugs-jsr305, Google APIs Client Library for Java, Google App Engine extensions to the Google API Client Library for Java., Google App Engine extensions to the Google HTTP Client Library for Java., Google App Engine extensions to the Google OAuth Client Library for Java., Google HTTP Client Library for Java, Google OAuth Client Library for Java, Guava: Google Core Libraries for Java, J2ObjC Annotations, JDO extensions to the Google HTTP Client Library for Java., Jackson 2 extensions to the Google HTTP Client Library for Java., Jackson-core, Servlet and JDO extensions to the Google API Client Library for Java., Servlet and JDO extensions to the Google OAuth Client Library for Java.
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jackson-core-2.9.2.jar | 313.71 kB | 130 | 105 | 11 | 1.6 | debug |
google-api-client-${project.version}.jar | 199.67 kB | 141 | 110 | 22 | 1.6 | debug |
google-api-client-servlet-${project.version}.jar | 6.69 kB | 14 | 4 | 1 | 1.6 | debug |
appengine-api-1.0-sdk-1.7.7.jar | 30.66 MB | 6,566 | 6,044 | 86 | 1.6 | debug |
appengine-api-labs-1.7.7.jar | 10.94 MB | 1,448 | 1,374 | 10 | 1.6 | debug |
appengine-api-stubs-1.7.7.jar | 12.16 MB | 3,098 | 2,785 | 167 | 1.6 | debug |
appengine-testing-1.7.7.jar | 10.32 MB | 2,293 | 2,265 | 26 | 1.6 | debug |
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-appengine-${project.http.version}.jar | 15.81 kB | 21 | 11 | 2 | 1.6 | debug |
google-http-client-jackson2-${project.http.version}.jar | 6.58 kB | 13 | 5 | 1 | 1.6 | debug |
google-http-client-jdo-${project.http.version}.jar | 8.08 kB | 13 | 5 | 1 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
google-oauth-client-${project.oauth.version}.jar | 61.64 kB | 57 | 47 | 3 | 1.6 | debug |
google-oauth-client-appengine-${project.oauth.version}.jar | 8.37 kB | 17 | 7 | 2 | 1.6 | debug |
google-oauth-client-servlet-${project.oauth.version}.jar | 22.92 kB | 24 | 11 | 4 | 1.6 | debug |
commons-codec-1.10.jar | 277.52 kB | 238 | 92 | 6 | 1.6 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
jdo2-api-2.3-eb.jar | 188.18 kB | 226 | 182 | 7 | 1.5 | debug |
servlet-api-2.5.jar | 102.65 kB | 68 | 42 | 2 | 1.5 | debug |
transaction-api-1.1.jar | 14.72 kB | 24 | 18 | 2 | 1.3 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
httpclient-4.5.5.jar | 748.17 kB | 508 | 467 | 24 | 1.6 | debug |
httpcore-4.4.9.jar | 317.87 kB | 282 | 252 | 17 | 1.6 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
25 | 69.21 MB | 17,626 | 16,145 | 464 | 1.6 | 25 |
compile: 17 | compile: 2.27 MB | compile: 1,967 | compile: 1,523 | compile: 115 | - | compile: 17 |
test: 7 | test: 36.28 MB | test: 9,093 | test: 8,578 | test: 263 | - | test: 7 |
provided: 1 | provided: 30.66 MB | provided: 6,566 | provided: 6,044 | provided: 86 | - | provided: 1 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.fasterxml.jackson.core:jackson-core:jar:2.9.2 | - | - | - |
com.google.api-client:google-api-client:jar:${project.version} | - | - | - |
com.google.api-client:google-api-client-servlet:jar:${project.version} | - | - | - |
com.google.appengine:appengine-api-1.0-sdk:jar:1.7.7 | - | - | - |
com.google.appengine:appengine-api-labs:jar:1.7.7 | - | - | - |
com.google.appengine:appengine-api-stubs:jar:1.7.7 | - | - | - |
com.google.appengine:appengine-testing:jar:1.7.7 | - | - | - |
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.guava:guava:jar:20.0 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-appengine:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-jackson2:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-jdo:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
com.google.oauth-client:google-oauth-client:jar:${project.oauth.version} | - | - | - |
com.google.oauth-client:google-oauth-client-appengine:jar:${project.oauth.version} | - | - | - |
com.google.oauth-client:google-oauth-client-servlet:jar:${project.oauth.version} | - | - | - |
commons-codec:commons-codec:jar:1.10 | - | - | - |
commons-logging:commons-logging:jar:1.2 | - | - | - |
javax.jdo:jdo2-api:jar:2.3-eb | - | - | - |
javax.servlet:servlet-api:jar:2.5 | - | - | - |
javax.transaction:transaction-api:jar:1.1 | - | - | - |
junit:junit:jar:4.8.2 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.5 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.9 | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
25 (compile: 17, test: 7, provided: 1) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.guava | guava | 20.0 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-jackson2 | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
com.google.oauth-client | google-oauth-client | ${project.oauth.version} | jar | The Apache Software License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.http-client | google-http-client-gson | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-protobuf | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
commons-codec | commons-codec | 1.6 | jar | The Apache Software License, Version 2.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.fasterxml.jackson.core | jackson-core | 2.9.2 | jar | The Apache Software License, Version 2.0 |
com.google.code.findbugs | jsr305 | 3.0.2 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
com.google.j2objc | j2objc-annotations | 1.1 | jar | The Apache Software License, Version 2.0 |
commons-logging | commons-logging | 1.2 | jar | The Apache Software License, Version 2.0 |
org.apache.httpcomponents | httpclient | 4.5.5 | jar | Apache License, Version 2.0 |
org.apache.httpcomponents | httpcore | 4.4.9 | jar | Apache License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.code.gson | gson | 2.1 | jar | The Apache Software License, Version 2.0 |
com.google.protobuf | protobuf-java | 2.6.1 | jar | New BSD license |
New BSD license: Protocol Buffer Java API
Apache License, Version 2.0: Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, Commons Codec, FindBugs-jsr305, GSON extensions to the Google HTTP Client Library for Java., Google APIs Client Library for Java, Google HTTP Client Library for Java, Google OAuth Client Library for Java, Gson, Guava: Google Core Libraries for Java, J2ObjC Annotations, Jackson 2 extensions to the Google HTTP Client Library for Java., Jackson-core, Protocol Buffer extensions to the Google HTTP Client Library for Java.
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jackson-core-2.9.2.jar | 313.71 kB | 130 | 105 | 11 | 1.6 | debug |
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
gson-2.1.jar | 175.89 kB | 158 | 148 | 6 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-gson-${project.http.version}.jar | 8.40 kB | 14 | 6 | 1 | 1.6 | debug |
google-http-client-jackson2-${project.http.version}.jar | 6.58 kB | 13 | 5 | 1 | 1.6 | debug |
google-http-client-protobuf-${project.http.version}.jar | 5.17 kB | 14 | 5 | 2 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
google-oauth-client-${project.oauth.version}.jar | 61.64 kB | 57 | 47 | 3 | 1.6 | debug |
protobuf-java-2.6.1.jar | 582.66 kB | 286 | 276 | 1 | 1.5 | debug |
commons-codec-1.6.jar | 227.32 kB | 218 | 76 | 6 | 1.5 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
httpclient-4.5.5.jar | 748.17 kB | 508 | 467 | 24 | 1.6 | debug |
httpcore-4.4.9.jar | 317.87 kB | 282 | 252 | 17 | 1.6 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
16 | 5.29 MB | 4,125 | 3,706 | 142 | 1.6 | 16 |
compile: 10 | compile: 4.09 MB | compile: 3,168 | compile: 2,965 | compile: 96 | - | compile: 10 |
test: 5 | test: 1,003.90 kB | test: 739 | test: 665 | test: 40 | - | test: 5 |
provided: 1 | provided: 227.32 kB | provided: 218 | provided: 76 | provided: 6 | - | provided: 1 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.fasterxml.jackson.core:jackson-core:jar:2.9.2 | - | - | - |
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.code.gson:gson:jar:2.1 | - | - | - |
com.google.guava:guava:jar:20.0 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-gson:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-jackson2:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-protobuf:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
com.google.oauth-client:google-oauth-client:jar:${project.oauth.version} | - | - | - |
com.google.protobuf:protobuf-java:jar:2.6.1 | - | - | - |
commons-codec:commons-codec:jar:1.6 | - | - | - |
commons-logging:commons-logging:jar:1.2 | - | - | - |
junit:junit:jar:4.8.2 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.5 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.9 | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
16 (compile: 10, test: 5, provided: 1) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.api-client | google-api-client | ${project.version} | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-gson | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
Apache License, Version 2.0: Apache Commons Codec, Apache HttpClient, Apache HttpCore
The Apache Software License, Version 2.0: Apache Commons Logging, FindBugs-jsr305, GSON extensions to the Google APIs Client Library for Java, GSON extensions to the Google HTTP Client Library for Java., Google APIs Client Library for Java, Google HTTP Client Library for Java, Google OAuth Client Library for Java, Gson, Guava: Google Core Libraries for Java, J2ObjC Annotations, Jackson 2 extensions to the Google HTTP Client Library for Java., Jackson-core
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jackson-core-2.9.2.jar | 313.71 kB | 130 | 105 | 11 | 1.6 | debug |
google-api-client-${project.version}.jar | 199.67 kB | 141 | 110 | 22 | 1.6 | debug |
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
gson-2.1.jar | 175.89 kB | 158 | 148 | 6 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-gson-${project.http.version}.jar | 8.40 kB | 14 | 6 | 1 | 1.6 | debug |
google-http-client-jackson2-${project.http.version}.jar | 6.58 kB | 13 | 5 | 1 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
google-oauth-client-${project.oauth.version}.jar | 61.64 kB | 57 | 47 | 3 | 1.6 | debug |
commons-codec-1.10.jar | 277.52 kB | 238 | 92 | 6 | 1.6 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
httpclient-4.5.5.jar | 748.17 kB | 508 | 467 | 24 | 1.6 | debug |
httpcore-4.4.9.jar | 317.87 kB | 282 | 252 | 17 | 1.6 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
14 | 4.73 MB | 3,719 | 3,321 | 131 | 1.6 | 14 |
compile: 14 | compile: 4.73 MB | compile: 3,719 | compile: 3,321 | compile: 131 | - | compile: 14 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.fasterxml.jackson.core:jackson-core:jar:2.9.2 | - | - | - |
com.google.api-client:google-api-client:jar:${project.version} | - | - | - |
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.code.gson:gson:jar:2.1 | - | - | - |
com.google.guava:guava:jar:20.0 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-gson:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-jackson2:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
com.google.oauth-client:google-oauth-client:jar:${project.oauth.version} | - | - | - |
commons-codec:commons-codec:jar:1.10 | - | - | - |
commons-logging:commons-logging:jar:1.2 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.5 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.9 | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
14 (compile: 14) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.api-client | google-api-client | ${project.version} | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-jackson2 | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.fasterxml.jackson.core | jackson-core | 2.9.2 | jar | The Apache Software License, Version 2.0 |
com.google.code.findbugs | jsr305 | 3.0.2 | jar | The Apache Software License, Version 2.0 |
com.google.guava | guava | 20.0 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
com.google.j2objc | j2objc-annotations | 1.1 | jar | The Apache Software License, Version 2.0 |
com.google.oauth-client | google-oauth-client | ${project.oauth.version} | jar | The Apache Software License, Version 2.0 |
commons-codec | commons-codec | 1.10 | jar | Apache License, Version 2.0 |
commons-logging | commons-logging | 1.2 | jar | The Apache Software License, Version 2.0 |
org.apache.httpcomponents | httpclient | 4.5.5 | jar | Apache License, Version 2.0 |
org.apache.httpcomponents | httpcore | 4.4.9 | jar | Apache License, Version 2.0 |
Apache License, Version 2.0: Apache Commons Codec, Apache HttpClient, Apache HttpCore
The Apache Software License, Version 2.0: Apache Commons Logging, FindBugs-jsr305, Google APIs Client Library for Java, Google HTTP Client Library for Java, Google OAuth Client Library for Java, Guava: Google Core Libraries for Java, J2ObjC Annotations, Jackson 2 extensions to the Google APIs Client Library for Java, Jackson 2 extensions to the Google HTTP Client Library for Java., Jackson-core
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jackson-core-2.9.2.jar | 313.71 kB | 130 | 105 | 11 | 1.6 | debug |
google-api-client-${project.version}.jar | 199.67 kB | 141 | 110 | 22 | 1.6 | debug |
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-jackson2-${project.http.version}.jar | 6.58 kB | 13 | 5 | 1 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
google-oauth-client-${project.oauth.version}.jar | 61.64 kB | 57 | 47 | 3 | 1.6 | debug |
commons-codec-1.10.jar | 277.52 kB | 238 | 92 | 6 | 1.6 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
httpclient-4.5.5.jar | 748.17 kB | 508 | 467 | 24 | 1.6 | debug |
httpcore-4.4.9.jar | 317.87 kB | 282 | 252 | 17 | 1.6 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
12 | 4.55 MB | 3,547 | 3,167 | 124 | 1.6 | 12 |
compile: 12 | compile: 4.55 MB | compile: 3,547 | compile: 3,167 | compile: 124 | - | compile: 12 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.fasterxml.jackson.core:jackson-core:jar:2.9.2 | - | - | - |
com.google.api-client:google-api-client:jar:${project.version} | - | - | - |
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.guava:guava:jar:20.0 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-jackson2:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
com.google.oauth-client:google-oauth-client:jar:${project.oauth.version} | - | - | - |
commons-codec:commons-codec:jar:1.10 | - | - | - |
commons-logging:commons-logging:jar:1.2 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.5 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.9 | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
12 (compile: 12) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.api-client | google-api-client | ${project.version} | jar | The Apache Software License, Version 2.0 |
com.google.oauth-client | google-oauth-client-java6 | ${project.oauth.version} | jar | The Apache Software License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
Apache License, Version 2.0: Apache Commons Codec, Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, FindBugs-jsr305, Google APIs Client Library for Java, Google HTTP Client Library for Java, Google OAuth Client Library for Java, Guava: Google Core Libraries for Java, J2ObjC Annotations, Jackson 2 extensions to the Google HTTP Client Library for Java., Jackson-core, Java 6 (and higher) Extensions to the Google API Client Library for Java., Java 6 (and higher) extensions to the Google OAuth Client Library for Java.
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jackson-core-2.9.2.jar | 313.71 kB | 130 | 105 | 11 | 1.6 | debug |
google-api-client-${project.version}.jar | 199.67 kB | 141 | 110 | 22 | 1.6 | debug |
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-jackson2-${project.http.version}.jar | 6.58 kB | 13 | 5 | 1 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
google-oauth-client-${project.oauth.version}.jar | 61.64 kB | 57 | 47 | 3 | 1.6 | debug |
google-oauth-client-java6-${project.oauth.version}.jar | 12.66 kB | 18 | 8 | 1 | 1.6 | debug |
commons-codec-1.10.jar | 277.52 kB | 238 | 92 | 6 | 1.6 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
httpclient-4.5.5.jar | 748.17 kB | 508 | 467 | 24 | 1.6 | debug |
httpcore-4.4.9.jar | 317.87 kB | 282 | 252 | 17 | 1.6 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
14 | 4.79 MB | 3,832 | 3,405 | 155 | 1.6 | 14 |
compile: 13 | compile: 4.56 MB | compile: 3,565 | compile: 3,175 | compile: 125 | - | compile: 13 |
test: 1 | test: 231.78 kB | test: 267 | test: 230 | test: 30 | - | test: 1 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.fasterxml.jackson.core:jackson-core:jar:2.9.2 | - | - | - |
com.google.api-client:google-api-client:jar:${project.version} | - | - | - |
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.guava:guava:jar:20.0 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-jackson2:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
com.google.oauth-client:google-oauth-client:jar:${project.oauth.version} | - | - | - |
com.google.oauth-client:google-oauth-client-java6:jar:${project.oauth.version} | - | - | - |
commons-codec:commons-codec:jar:1.10 | - | - | - |
commons-logging:commons-logging:jar:1.2 | - | - | - |
junit:junit:jar:4.8.2 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.5 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.9 | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
14 (compile: 13, test: 1) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.api-client | google-api-client | ${project.version} | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-protobuf | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
New BSD license: Protocol Buffer Java API
Apache License, Version 2.0: Apache Commons Codec, Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, FindBugs-jsr305, Google APIs Client Library for Java, Google HTTP Client Library for Java, Google OAuth Client Library for Java, Guava: Google Core Libraries for Java, J2ObjC Annotations, Jackson 2 extensions to the Google HTTP Client Library for Java., Jackson-core, Protocol Buffer extensions to the Google APIs Client Library for Java, Protocol Buffer extensions to the Google HTTP Client Library for Java.
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jackson-core-2.9.2.jar | 313.71 kB | 130 | 105 | 11 | 1.6 | debug |
google-api-client-${project.version}.jar | 199.67 kB | 141 | 110 | 22 | 1.6 | debug |
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-jackson2-${project.http.version}.jar | 6.58 kB | 13 | 5 | 1 | 1.6 | debug |
google-http-client-protobuf-${project.http.version}.jar | 5.17 kB | 14 | 5 | 2 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
google-oauth-client-${project.oauth.version}.jar | 61.64 kB | 57 | 47 | 3 | 1.6 | debug |
protobuf-java-2.6.1.jar | 582.66 kB | 286 | 276 | 1 | 1.5 | debug |
commons-codec-1.10.jar | 277.52 kB | 238 | 92 | 6 | 1.6 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
httpclient-4.5.5.jar | 748.17 kB | 508 | 467 | 24 | 1.6 | debug |
httpcore-4.4.9.jar | 317.87 kB | 282 | 252 | 17 | 1.6 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
15 | 5.35 MB | 4,114 | 3,678 | 157 | 1.6 | 15 |
compile: 14 | compile: 5.13 MB | compile: 3,847 | compile: 3,448 | compile: 127 | - | compile: 14 |
test: 1 | test: 231.78 kB | test: 267 | test: 230 | test: 30 | - | test: 1 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.fasterxml.jackson.core:jackson-core:jar:2.9.2 | - | - | - |
com.google.api-client:google-api-client:jar:${project.version} | - | - | - |
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.guava:guava:jar:20.0 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-jackson2:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-protobuf:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
com.google.oauth-client:google-oauth-client:jar:${project.oauth.version} | - | - | - |
com.google.protobuf:protobuf-java:jar:2.6.1 | - | - | - |
commons-codec:commons-codec:jar:1.10 | - | - | - |
commons-logging:commons-logging:jar:1.2 | - | - | - |
junit:junit:jar:4.8.2 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.5 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.9 | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
15 (compile: 14, test: 1) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.api-client | google-api-client | ${project.version} | jar | The Apache Software License, Version 2.0 |
com.google.oauth-client | google-oauth-client-servlet | ${project.oauth.version} | jar | The Apache Software License, Version 2.0 |
javax.jdo | jdo2-api | 2.3-eb | jar | Apache 2 |
javax.servlet | servlet-api | 2.5 | jar | - |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
Apache 2: JDO2 API
Unknown: servlet-api, transaction-api
Apache License, Version 2.0: Apache Commons Codec, Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, FindBugs-jsr305, Google APIs Client Library for Java, Google HTTP Client Library for Java, Google OAuth Client Library for Java, Guava: Google Core Libraries for Java, J2ObjC Annotations, JDO extensions to the Google HTTP Client Library for Java., Jackson 2 extensions to the Google HTTP Client Library for Java., Jackson-core, Servlet and JDO extensions to the Google API Client Library for Java., Servlet and JDO extensions to the Google OAuth Client Library for Java.
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jackson-core-2.9.2.jar | 313.71 kB | 130 | 105 | 11 | 1.6 | debug |
google-api-client-${project.version}.jar | 199.67 kB | 141 | 110 | 22 | 1.6 | debug |
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-jackson2-${project.http.version}.jar | 6.58 kB | 13 | 5 | 1 | 1.6 | debug |
google-http-client-jdo-${project.http.version}.jar | 8.08 kB | 13 | 5 | 1 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
google-oauth-client-${project.oauth.version}.jar | 61.64 kB | 57 | 47 | 3 | 1.6 | debug |
google-oauth-client-servlet-${project.oauth.version}.jar | 22.92 kB | 24 | 11 | 4 | 1.6 | debug |
commons-codec-1.10.jar | 277.52 kB | 238 | 92 | 6 | 1.6 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
jdo2-api-2.3-eb.jar | 188.18 kB | 226 | 182 | 7 | 1.5 | debug |
servlet-api-2.5.jar | 102.65 kB | 68 | 42 | 2 | 1.5 | debug |
transaction-api-1.1.jar | 14.72 kB | 24 | 18 | 2 | 1.3 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
httpclient-4.5.5.jar | 748.17 kB | 508 | 467 | 24 | 1.6 | debug |
httpcore-4.4.9.jar | 317.87 kB | 282 | 252 | 17 | 1.6 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
18 | 5.11 MB | 4,169 | 3,655 | 170 | 1.6 | 18 |
compile: 17 | compile: 4.88 MB | compile: 3,902 | compile: 3,425 | compile: 140 | - | compile: 17 |
test: 1 | test: 231.78 kB | test: 267 | test: 230 | test: 30 | - | test: 1 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.fasterxml.jackson.core:jackson-core:jar:2.9.2 | - | - | - |
com.google.api-client:google-api-client:jar:${project.version} | - | - | - |
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.guava:guava:jar:20.0 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-jackson2:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-jdo:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
com.google.oauth-client:google-oauth-client:jar:${project.oauth.version} | - | - | - |
com.google.oauth-client:google-oauth-client-servlet:jar:${project.oauth.version} | - | - | - |
commons-codec:commons-codec:jar:1.10 | - | - | - |
commons-logging:commons-logging:jar:1.2 | - | - | - |
javax.jdo:jdo2-api:jar:2.3-eb | - | - | - |
javax.servlet:servlet-api:jar:2.5 | - | - | - |
javax.transaction:transaction-api:jar:1.1 | - | - | - |
junit:junit:jar:4.8.2 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.5 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.9 | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
18 (compile: 17, test: 1) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.api-client | google-api-client | ${project.version} | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-xml | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
Apache Software License, version 1.1: MXP1: Xml Pull Parser 3rd Edition (XPP3)
Public Domain: MXP1: Xml Pull Parser 3rd Edition (XPP3)
Apache License, Version 2.0: Apache Commons Codec, Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, FindBugs-jsr305, Google APIs Client Library for Java, Google HTTP Client Library for Java, Google OAuth Client Library for Java, Guava: Google Core Libraries for Java, J2ObjC Annotations, Jackson 2 extensions to the Google HTTP Client Library for Java., Jackson-core, XML extensions to the Google APIs Client Library for Java, XML extensions to the Google HTTP Client Library for Java.
Indiana University Extreme! Lab Software License, vesion 1.1.1: MXP1: Xml Pull Parser 3rd Edition (XPP3)
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jackson-core-2.9.2.jar | 313.71 kB | 130 | 105 | 11 | 1.6 | debug |
google-api-client-${project.version}.jar | 199.67 kB | 141 | 110 | 22 | 1.6 | debug |
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-jackson2-${project.http.version}.jar | 6.58 kB | 13 | 5 | 1 | 1.6 | debug |
google-http-client-xml-${project.http.version}.jar | 28.52 kB | 28 | 17 | 4 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
google-oauth-client-${project.oauth.version}.jar | 61.64 kB | 57 | 47 | 3 | 1.6 | debug |
commons-codec-1.10.jar | 277.52 kB | 238 | 92 | 6 | 1.6 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
httpclient-4.5.5.jar | 748.17 kB | 508 | 467 | 24 | 1.6 | debug |
httpcore-4.4.9.jar | 317.87 kB | 282 | 252 | 17 | 1.6 | debug |
xpp3-1.1.4c.jar | 117.25 kB | 78 | 56 | 13 | 1.1 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
15 | 4.92 MB | 3,920 | 3,470 | 171 | 1.6 | 15 |
compile: 14 | compile: 4.69 MB | compile: 3,653 | compile: 3,240 | compile: 141 | - | compile: 14 |
test: 1 | test: 231.78 kB | test: 267 | test: 230 | test: 30 | - | test: 1 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.fasterxml.jackson.core:jackson-core:jar:2.9.2 | - | - | - |
com.google.api-client:google-api-client:jar:${project.version} | - | - | - |
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.guava:guava:jar:20.0 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-jackson2:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-xml:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
com.google.oauth-client:google-oauth-client:jar:${project.oauth.version} | - | - | - |
commons-codec:commons-codec:jar:1.10 | - | - | - |
commons-logging:commons-logging:jar:1.2 | - | - | - |
junit:junit:jar:4.8.2 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.5 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.9 | - | - | - |
xpp3:xpp3:jar:1.1.4c | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
15 (compile: 14, test: 1) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.http-client | google-http-client | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.android | android | 4.1.1.4 | jar | Apache 2.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.code.findbugs | jsr305 | 3.0.2 | jar | The Apache Software License, Version 2.0 |
com.google.j2objc | j2objc-annotations | 1.1 | jar | The Apache Software License, Version 2.0 |
commons-codec | commons-codec | 1.6 | jar | The Apache Software License, Version 2.0 |
commons-logging | commons-logging | 1.1.1 | jar | The Apache Software License, Version 2.0 |
org.apache.httpcomponents | httpclient | 4.5.3 | jar | Apache License, Version 2.0 |
org.apache.httpcomponents | httpcore | 4.4.6 | jar | Apache License, Version 2.0 |
The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
org.json | json | 20080701 | jar | provided without support or warranty |
org.khronos | opengl-api | gl1.1-android-2.1_r1 | jar | Apache 2.0 |
xerces | xmlParserAPIs | 2.6.2 | jar | - |
xpp3 | xpp3 | 1.1.4c | jar | Indiana University Extreme! Lab Software License, vesion 1.1.1-Public Domain-Apache Software License, version 1.1 |
Apache Software License, version 1.1: MXP1: Xml Pull Parser 3rd Edition (XPP3)
Public Domain: MXP1: Xml Pull Parser 3rd Edition (XPP3)
Unknown: xmlParserAPIs
Apache License, Version 2.0: Apache HttpClient, Apache HttpCore
provided without support or warranty: JSON (JavaScript Object Notation)
Apache 2.0: Google Android Java ME Library (Khronos), Google Android Library
The Apache Software License, Version 2.0: Android Platform Extensions to the Google HTTP Client Library for Java., Commons Codec, Commons Logging, FindBugs-jsr305, Google HTTP Client Library for Java, J2ObjC Annotations
Indiana University Extreme! Lab Software License, vesion 1.1.1: MXP1: Xml Pull Parser 3rd Edition (XPP3)
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
android-4.1.1.4.jar | 12.35 MB | 7,264 | 1,698 | 71 | 1.5 | debug |
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
commons-codec-1.6.jar | 227.32 kB | 218 | 76 | 6 | 1.5 | debug |
commons-logging-1.1.1.jar | 59.26 kB | 42 | 28 | 2 | 1.1 | debug |
httpclient-4.5.3.jar | 730.27 kB | 507 | 466 | 24 | 1.6 | debug |
httpcore-4.4.6.jar | 316.23 kB | 282 | 252 | 17 | 1.6 | debug |
json-20080701.jar | 36.99 kB | 26 | 17 | 1 | 1.3 | debug |
opengl-api-gl1.1-android-2.1_r1.jar | 18.06 kB | 25 | 13 | 2 | 1.5 | debug |
xmlParserAPIs-2.6.2.jar | 121.80 kB | 238 | 207 | 17 | 1.1 | release |
xpp3-1.1.4c.jar | 117.25 kB | 78 | 56 | 13 | 1.1 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
12 | 14.22 MB | 8,972 | 3,060 | 173 | 1.6 | 11 |
compile: 7 | compile: 1.58 MB | compile: 1,341 | compile: 1,069 | compile: 69 | - | compile: 7 |
provided: 5 | provided: 12.64 MB | provided: 7,631 | provided: 1,991 | provided: 104 | - | provided: 4 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.google.android:android:jar:4.1.1.4 | - | - | - |
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
commons-codec:commons-codec:jar:1.6 | - | - | - |
commons-logging:commons-logging:jar:1.1.1 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.3 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.6 | - | - | - |
org.json:json:jar:20080701 | - | - | - |
org.khronos:opengl-api:jar:gl1.1-android-2.1_r1 | - | - | - |
xerces:xmlParserAPIs:jar:2.6.2 | - | - | - |
xpp3:xpp3:jar:1.1.4c | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
12 (compile: 7, provided: 5) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.http-client | google-http-client | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.appengine | appengine-api-stubs | 1.7.7 | jar | Google App Engine Terms of Service |
com.google.appengine | appengine-testing | 1.7.7 | jar | Google App Engine Terms of Service |
com.google.guava | guava | 20.0 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-test | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.appengine | appengine-api-1.0-sdk | 1.7.7 | jar | Google App Engine Terms of Service |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.code.findbugs | jsr305 | 3.0.2 | jar | The Apache Software License, Version 2.0 |
com.google.j2objc | j2objc-annotations | 1.1 | jar | The Apache Software License, Version 2.0 |
commons-codec | commons-codec | 1.6 | jar | The Apache Software License, Version 2.0 |
commons-logging | commons-logging | 1.2 | jar | The Apache Software License, Version 2.0 |
org.apache.httpcomponents | httpclient | 4.5.3 | jar | Apache License, Version 2.0 |
org.apache.httpcomponents | httpcore | 4.4.6 | jar | Apache License, Version 2.0 |
Google App Engine Terms of Service: appengine-api-1.0-sdk, appengine-api-stubs, appengine-testing
Apache License, Version 2.0: Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, Commons Codec, FindBugs-jsr305, Google App Engine extensions to the Google HTTP Client Library for Java., Google HTTP Client Library for Java, Guava: Google Core Libraries for Java, J2ObjC Annotations, Shared classes used for testing of artifacts in the Google HTTP Client Library for Java.
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
appengine-api-1.0-sdk-1.7.7.jar | 30.66 MB | 6,566 | 6,044 | 86 | 1.6 | debug |
appengine-api-stubs-1.7.7.jar | 12.16 MB | 3,098 | 2,785 | 167 | 1.6 | debug |
appengine-testing-1.7.7.jar | 10.32 MB | 2,293 | 2,265 | 26 | 1.6 | debug |
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-test-${project.http.version}.jar | 51.73 kB | 59 | 49 | 2 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
commons-codec-1.6.jar | 227.32 kB | 218 | 76 | 6 | 1.5 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
httpclient-4.5.3.jar | 730.27 kB | 507 | 466 | 24 | 1.6 | debug |
httpcore-4.4.6.jar | 316.23 kB | 282 | 252 | 17 | 1.6 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
13 | 57.33 MB | 15,468 | 14,256 | 398 | 1.6 | 13 |
compile: 7 | compile: 1.59 MB | compile: 1,341 | compile: 1,069 | compile: 69 | - | compile: 7 |
test: 5 | test: 25.08 MB | test: 7,561 | test: 7,143 | test: 243 | - | test: 5 |
provided: 1 | provided: 30.66 MB | provided: 6,566 | provided: 6,044 | provided: 86 | - | provided: 1 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.google.appengine:appengine-api-1.0-sdk:jar:1.7.7 | - | - | - |
com.google.appengine:appengine-api-stubs:jar:1.7.7 | - | - | - |
com.google.appengine:appengine-testing:jar:1.7.7 | - | - | - |
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.guava:guava:jar:20.0 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-test:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
commons-codec:commons-codec:jar:1.6 | - | - | - |
commons-logging:commons-logging:jar:1.2 | - | - | - |
junit:junit:jar:4.8.2 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.3 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.6 | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
13 (compile: 7, test: 5, provided: 1) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.code.findbugs | jsr305 | 3.0.2 | jar | The Apache Software License, Version 2.0 |
com.google.j2objc | j2objc-annotations | 1.1 | jar | The Apache Software License, Version 2.0 |
org.apache.httpcomponents | httpclient | 4.5.3 | jar | Apache License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.guava | guava-testlib | 20.0 | jar | The Apache Software License, Version 2.0 |
com.google.truth | truth | 0.40 | jar | The Apache Software License, Version 2.0 |
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
org.mockito | mockito-all | 1.9.0 | jar | The MIT License |
The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.android | android | 1.5_r4 | jar | Apache 2.0 |
com.google.guava | guava | 20.0 | jar | The Apache Software License, Version 2.0 |
commons-codec | commons-codec | 1.6 | jar | The Apache Software License, Version 2.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
commons-logging | commons-logging | 1.1.1 | jar | The Apache Software License, Version 2.0 |
org.apache.httpcomponents | httpcore | 4.4.6 | jar | Apache License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.errorprone | error_prone_annotations | 2.0.12 | jar | Apache 2.0 |
com.googlecode.java-diff-utils | diffutils | 1.3.0 | jar | The Apache Software License, Version 2.0 |
The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
org.khronos | opengl-api | gl1.1-android-2.1_r1 | jar | Apache 2.0 |
xerces | xmlParserAPIs | 2.6.2 | jar | - |
xpp3 | xpp3 | 1.1.4c | jar | Indiana University Extreme! Lab Software License, vesion 1.1.1-Public Domain-Apache Software License, version 1.1 |
Apache Software License, version 1.1: MXP1: Xml Pull Parser 3rd Edition (XPP3)
Public Domain: MXP1: Xml Pull Parser 3rd Edition (XPP3)
Unknown: xmlParserAPIs
Apache License, Version 2.0: Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
Apache 2.0: Google Android Java ME Library (Khronos), Google Android Library, error-prone annotations
The Apache Software License, Version 2.0: Commons Codec, Commons Logging, FindBugs-jsr305, Google HTTP Client Library for Java, Guava Testing Library, Guava: Google Core Libraries for Java, J2ObjC Annotations, Truth Core, java-diff-utils
The MIT License: Mockito
Indiana University Extreme! Lab Software License, vesion 1.1.1: MXP1: Xml Pull Parser 3rd Edition (XPP3)
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
android-1.5_r4.jar | 2.04 MB | 1,894 | 965 | 41 | 1.5 | debug |
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
error_prone_annotations-2.0.12.jar | 10.06 kB | 28 | 16 | 2 | 1.6 | release |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
guava-testlib-20.0.jar | 748.27 kB | 595 | 574 | 7 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
truth-0.40.jar | 196.26 kB | 150 | 139 | 1 | 1.6 | debug |
diffutils-1.3.0.jar | 33.33 kB | 35 | 26 | 2 | 1.5 | debug |
commons-codec-1.6.jar | 227.32 kB | 218 | 76 | 6 | 1.5 | debug |
commons-logging-1.1.1.jar | 59.26 kB | 42 | 28 | 2 | 1.1 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
httpclient-4.5.3.jar | 730.27 kB | 507 | 466 | 24 | 1.6 | debug |
httpcore-4.4.6.jar | 316.23 kB | 282 | 252 | 17 | 1.6 | debug |
opengl-api-gl1.1-android-2.1_r1.jar | 18.06 kB | 25 | 13 | 2 | 1.5 | debug |
mockito-all-1.9.0.jar | 1.43 MB | 1,279 | 654 | 66 | 1.5 | debug |
xmlParserAPIs-2.6.2.jar | 121.80 kB | 238 | 207 | 17 | 1.1 | release |
xpp3-1.1.4c.jar | 117.25 kB | 78 | 56 | 13 | 1.1 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
17 | 8.56 MB | 7,551 | 5,563 | 252 | 1.6 | 15 |
compile: 5 | compile: 1.11 MB | compile: 900 | compile: 793 | compile: 47 | - | compile: 5 |
test: 6 | test: 2.62 MB | test: 2,354 | test: 1,639 | test: 108 | - | test: 5 |
provided: 6 | provided: 4.84 MB | provided: 4,297 | provided: 3,131 | provided: 97 | - | provided: 5 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.google.android:android:jar:1.5_r4 | - | - | - |
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.errorprone:error_prone_annotations:jar:2.0.12 | - | - | - |
com.google.guava:guava:jar:20.0 | - | - | - |
com.google.guava:guava-testlib:jar:20.0 | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
com.google.truth:truth:jar:0.40 | - | - | - |
com.googlecode.java-diff-utils:diffutils:jar:1.3.0 | - | - | - |
commons-codec:commons-codec:jar:1.6 | - | - | - |
commons-logging:commons-logging:jar:1.1.1 | - | - | - |
junit:junit:jar:4.8.2 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.3 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.6 | - | - | - |
org.khronos:opengl-api:jar:gl1.1-android-2.1_r1 | - | - | - |
org.mockito:mockito-all:jar:1.9.0 | - | - | - |
xerces:xmlParserAPIs:jar:2.6.2 | - | - | - |
xpp3:xpp3:jar:1.1.4c | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
17 (compile: 5, test: 6, provided: 6) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.code.gson | gson | 2.1 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.guava | guava | 20.0 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-test | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.code.findbugs | jsr305 | 3.0.2 | jar | The Apache Software License, Version 2.0 |
com.google.j2objc | j2objc-annotations | 1.1 | jar | The Apache Software License, Version 2.0 |
commons-codec | commons-codec | 1.6 | jar | The Apache Software License, Version 2.0 |
commons-logging | commons-logging | 1.2 | jar | The Apache Software License, Version 2.0 |
org.apache.httpcomponents | httpclient | 4.5.3 | jar | Apache License, Version 2.0 |
org.apache.httpcomponents | httpcore | 4.4.6 | jar | Apache License, Version 2.0 |
Apache License, Version 2.0: Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, Commons Codec, FindBugs-jsr305, GSON extensions to the Google HTTP Client Library for Java., Google HTTP Client Library for Java, Gson, Guava: Google Core Libraries for Java, J2ObjC Annotations, Shared classes used for testing of artifacts in the Google HTTP Client Library for Java.
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
gson-2.1.jar | 175.89 kB | 158 | 148 | 6 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-test-${project.http.version}.jar | 51.73 kB | 59 | 49 | 2 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
commons-codec-1.6.jar | 227.32 kB | 218 | 76 | 6 | 1.5 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
httpclient-4.5.3.jar | 730.27 kB | 507 | 466 | 24 | 1.6 | debug |
httpcore-4.4.6.jar | 316.23 kB | 282 | 252 | 17 | 1.6 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
11 | 4.36 MB | 3,669 | 3,310 | 125 | 1.6 | 11 |
compile: 8 | compile: 1.76 MB | compile: 1,499 | compile: 1,217 | compile: 75 | - | compile: 8 |
test: 3 | test: 2.61 MB | test: 2,170 | test: 2,093 | test: 50 | - | test: 3 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.code.gson:gson:jar:2.1 | - | - | - |
com.google.guava:guava:jar:20.0 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-test:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
commons-codec:commons-codec:jar:1.6 | - | - | - |
commons-logging:commons-logging:jar:1.2 | - | - | - |
junit:junit:jar:4.8.2 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.3 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.6 | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
11 (compile: 8, test: 3) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.http-client | google-http-client | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
org.codehaus.jackson | jackson-core-asl | 1.9.11 | jar | The Apache Software License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.guava | guava | 20.0 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-test | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.code.findbugs | jsr305 | 3.0.2 | jar | The Apache Software License, Version 2.0 |
com.google.j2objc | j2objc-annotations | 1.1 | jar | The Apache Software License, Version 2.0 |
commons-codec | commons-codec | 1.6 | jar | The Apache Software License, Version 2.0 |
commons-logging | commons-logging | 1.2 | jar | The Apache Software License, Version 2.0 |
org.apache.httpcomponents | httpclient | 4.5.3 | jar | Apache License, Version 2.0 |
org.apache.httpcomponents | httpcore | 4.4.6 | jar | Apache License, Version 2.0 |
Apache License, Version 2.0: Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, Commons Codec, FindBugs-jsr305, Google HTTP Client Library for Java, Guava: Google Core Libraries for Java, J2ObjC Annotations, Jackson, Jackson extensions to the Google HTTP Client Library for Java., Shared classes used for testing of artifacts in the Google HTTP Client Library for Java.
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-test-${project.http.version}.jar | 51.73 kB | 59 | 49 | 2 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
commons-codec-1.6.jar | 227.32 kB | 218 | 76 | 6 | 1.5 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
httpclient-4.5.3.jar | 730.27 kB | 507 | 466 | 24 | 1.6 | debug |
httpcore-4.4.6.jar | 316.23 kB | 282 | 252 | 17 | 1.6 | debug |
jackson-core-asl-1.9.11.jar | 226.69 kB | 137 | 121 | 8 | 1.5 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
11 | 4.41 MB | 3,648 | 3,283 | 127 | 1.6 | 11 |
compile: 8 | compile: 1.81 MB | compile: 1,478 | compile: 1,190 | compile: 77 | - | compile: 8 |
test: 3 | test: 2.61 MB | test: 2,170 | test: 2,093 | test: 50 | - | test: 3 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.guava:guava:jar:20.0 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-test:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
commons-codec:commons-codec:jar:1.6 | - | - | - |
commons-logging:commons-logging:jar:1.2 | - | - | - |
junit:junit:jar:4.8.2 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.3 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.6 | - | - | - |
org.codehaus.jackson:jackson-core-asl:jar:1.9.11 | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
11 (compile: 8, test: 3) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.fasterxml.jackson.core | jackson-core | 2.9.2 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.guava | guava | 20.0 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-test | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.code.findbugs | jsr305 | 3.0.2 | jar | The Apache Software License, Version 2.0 |
com.google.j2objc | j2objc-annotations | 1.1 | jar | The Apache Software License, Version 2.0 |
commons-codec | commons-codec | 1.6 | jar | The Apache Software License, Version 2.0 |
commons-logging | commons-logging | 1.2 | jar | The Apache Software License, Version 2.0 |
org.apache.httpcomponents | httpclient | 4.5.3 | jar | Apache License, Version 2.0 |
org.apache.httpcomponents | httpcore | 4.4.6 | jar | Apache License, Version 2.0 |
Apache License, Version 2.0: Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, Commons Codec, FindBugs-jsr305, Google HTTP Client Library for Java, Guava: Google Core Libraries for Java, J2ObjC Annotations, Jackson 2 extensions to the Google HTTP Client Library for Java., Jackson-core, Shared classes used for testing of artifacts in the Google HTTP Client Library for Java.
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jackson-core-2.9.2.jar | 313.71 kB | 130 | 105 | 11 | 1.6 | debug |
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-test-${project.http.version}.jar | 51.73 kB | 59 | 49 | 2 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
commons-codec-1.6.jar | 227.32 kB | 218 | 76 | 6 | 1.5 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
httpclient-4.5.3.jar | 730.27 kB | 507 | 466 | 24 | 1.6 | debug |
httpcore-4.4.6.jar | 316.23 kB | 282 | 252 | 17 | 1.6 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
11 | 4.50 MB | 3,641 | 3,267 | 130 | 1.6 | 11 |
compile: 8 | compile: 1.89 MB | compile: 1,471 | compile: 1,174 | compile: 80 | - | compile: 8 |
test: 3 | test: 2.61 MB | test: 2,170 | test: 2,093 | test: 50 | - | test: 3 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.fasterxml.jackson.core:jackson-core:jar:2.9.2 | - | - | - |
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.guava:guava:jar:20.0 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-test:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
commons-codec:commons-codec:jar:1.6 | - | - | - |
commons-logging:commons-logging:jar:1.2 | - | - | - |
junit:junit:jar:4.8.2 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.3 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.6 | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
11 (compile: 8, test: 3) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.http-client | google-http-client | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
javax.jdo | jdo2-api | 2.3-eb | jar | Apache 2 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.guava | guava | 20.0 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-test | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
mysql | mysql-connector-java | 5.1.18 | jar | The GNU General Public License, Version 2 |
org.datanucleus | datanucleus-api-jdo | 3.2.1 | jar | The Apache Software License, Version 2.0 |
org.datanucleus | datanucleus-core | 3.2.2 | jar | The Apache Software License, Version 2.0 |
org.datanucleus | datanucleus-rdbms | 3.2.1 | jar | The Apache Software License, Version 2.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.code.findbugs | jsr305 | 3.0.2 | jar | The Apache Software License, Version 2.0 |
com.google.j2objc | j2objc-annotations | 1.1 | jar | The Apache Software License, Version 2.0 |
commons-codec | commons-codec | 1.6 | jar | The Apache Software License, Version 2.0 |
commons-logging | commons-logging | 1.2 | jar | The Apache Software License, Version 2.0 |
javax.transaction | transaction-api | 1.1 | jar | - |
org.apache.httpcomponents | httpclient | 4.5.3 | jar | Apache License, Version 2.0 |
org.apache.httpcomponents | httpcore | 4.4.6 | jar | Apache License, Version 2.0 |
Apache 2: JDO2 API
Unknown: transaction-api
Apache License, Version 2.0: Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, Commons Codec, DataNucleus Core, DataNucleus JDO API plugin, DataNucleus RDBMS, FindBugs-jsr305, Google HTTP Client Library for Java, Guava: Google Core Libraries for Java, J2ObjC Annotations, JDO extensions to the Google HTTP Client Library for Java., Shared classes used for testing of artifacts in the Google HTTP Client Library for Java.
The GNU General Public License, Version 2: MySQL Connector/J
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-test-${project.http.version}.jar | 51.73 kB | 59 | 49 | 2 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
commons-codec-1.6.jar | 227.32 kB | 218 | 76 | 6 | 1.5 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
jdo2-api-2.3-eb.jar | 188.18 kB | 226 | 182 | 7 | 1.5 | debug |
transaction-api-1.1.jar | 14.72 kB | 24 | 18 | 2 | 1.3 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
mysql-connector-java-5.1.18.jar | 771.37 kB | 279 | 245 | 12 | 1.6 | debug |
httpclient-4.5.3.jar | 730.27 kB | 507 | 466 | 24 | 1.6 | debug |
httpcore-4.4.6.jar | 316.23 kB | 282 | 252 | 17 | 1.6 | debug |
datanucleus-api-jdo-3.2.1.jar | 329.11 kB | 180 | 126 | 6 | 1.5 | debug |
datanucleus-core-3.2.2.jar | 1.72 MB | 943 | 841 | 50 | 1.5 | debug |
datanucleus-rdbms-3.2.1.jar | 1.69 MB | 768 | 715 | 29 | 1.6 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
16 | 8.87 MB | 5,931 | 5,289 | 225 | 1.6 | 16 |
compile: 9 | compile: 1.78 MB | compile: 1,591 | compile: 1,269 | compile: 78 | - | compile: 9 |
test: 7 | test: 7.09 MB | test: 4,340 | test: 4,020 | test: 147 | - | test: 7 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
DN_M2_Repo | http://www.datanucleus.org/downloads/maven2/ | Yes | - |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.http-client | google-http-client | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
com.google.protobuf | protobuf-java | 2.6.1 | jar | New BSD license |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.code.findbugs | jsr305 | 3.0.2 | jar | The Apache Software License, Version 2.0 |
com.google.j2objc | j2objc-annotations | 1.1 | jar | The Apache Software License, Version 2.0 |
commons-codec | commons-codec | 1.6 | jar | The Apache Software License, Version 2.0 |
commons-logging | commons-logging | 1.2 | jar | The Apache Software License, Version 2.0 |
org.apache.httpcomponents | httpclient | 4.5.3 | jar | Apache License, Version 2.0 |
org.apache.httpcomponents | httpcore | 4.4.6 | jar | Apache License, Version 2.0 |
New BSD license: Protocol Buffer Java API
Apache License, Version 2.0: Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, Commons Codec, FindBugs-jsr305, Google HTTP Client Library for Java, J2ObjC Annotations, Protocol Buffer extensions to the Google HTTP Client Library for Java.
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
protobuf-java-2.6.1.jar | 582.66 kB | 286 | 276 | 1 | 1.5 | debug |
commons-codec-1.6.jar | 227.32 kB | 218 | 76 | 6 | 1.5 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
httpclient-4.5.3.jar | 730.27 kB | 507 | 466 | 24 | 1.6 | debug |
httpcore-4.4.6.jar | 316.23 kB | 282 | 252 | 17 | 1.6 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
9 | 2.38 MB | 1,894 | 1,575 | 100 | 1.6 | 9 |
compile: 8 | compile: 2.15 MB | compile: 1,627 | compile: 1,345 | compile: 70 | - | compile: 8 |
test: 1 | test: 231.78 kB | test: 267 | test: 230 | test: 30 | - | test: 1 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
com.google.protobuf:protobuf-java:jar:2.6.1 | - | - | - |
commons-codec:commons-codec:jar:1.6 | - | - | - |
commons-logging:commons-logging:jar:1.2 | - | - | - |
junit:junit:jar:4.8.2 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.3 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.6 | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
9 (compile: 8, test: 1) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.http-client | google-http-client | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
xpp3 | xpp3 | 1.1.4c | jar | Indiana University Extreme! Lab Software License, vesion 1.1.1-Public Domain-Apache Software License, version 1.1 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.guava | guava | 20.0 | jar | The Apache Software License, Version 2.0 |
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.code.findbugs | jsr305 | 3.0.2 | jar | The Apache Software License, Version 2.0 |
com.google.j2objc | j2objc-annotations | 1.1 | jar | The Apache Software License, Version 2.0 |
commons-codec | commons-codec | 1.6 | jar | The Apache Software License, Version 2.0 |
commons-logging | commons-logging | 1.2 | jar | The Apache Software License, Version 2.0 |
org.apache.httpcomponents | httpclient | 4.5.3 | jar | Apache License, Version 2.0 |
org.apache.httpcomponents | httpcore | 4.4.6 | jar | Apache License, Version 2.0 |
Apache Software License, version 1.1: MXP1: Xml Pull Parser 3rd Edition (XPP3)
Public Domain: MXP1: Xml Pull Parser 3rd Edition (XPP3)
Apache License, Version 2.0: Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, Commons Codec, FindBugs-jsr305, Google HTTP Client Library for Java, Guava: Google Core Libraries for Java, J2ObjC Annotations, XML extensions to the Google HTTP Client Library for Java.
Indiana University Extreme! Lab Software License, vesion 1.1.1: MXP1: Xml Pull Parser 3rd Edition (XPP3)
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
commons-codec-1.6.jar | 227.32 kB | 218 | 76 | 6 | 1.5 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
httpclient-4.5.3.jar | 730.27 kB | 507 | 466 | 24 | 1.6 | debug |
httpcore-4.4.6.jar | 316.23 kB | 282 | 252 | 17 | 1.6 | debug |
xpp3-1.1.4c.jar | 117.25 kB | 78 | 56 | 13 | 1.1 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
10 | 4.26 MB | 3,530 | 3,169 | 130 | 1.6 | 10 |
compile: 8 | compile: 1.70 MB | compile: 1,419 | compile: 1,125 | compile: 82 | - | compile: 8 |
test: 2 | test: 2.56 MB | test: 2,111 | test: 2,044 | test: 48 | - | test: 2 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.guava:guava:jar:20.0 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
commons-codec:commons-codec:jar:1.6 | - | - | - |
commons-logging:commons-logging:jar:1.2 | - | - | - |
junit:junit:jar:4.8.2 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.3 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.6 | - | - | - |
xpp3:xpp3:jar:1.1.4c | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
10 (compile: 8, test: 2) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.http-client | google-http-client-appengine | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
com.google.oauth-client | google-oauth-client | ${project.oauth.version} | jar | The Apache Software License, Version 2.0 |
com.google.oauth-client | google-oauth-client-servlet | ${project.oauth.version} | jar | The Apache Software License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.appengine | appengine-api-stubs | 1.7.7 | jar | Google App Engine Terms of Service |
com.google.appengine | appengine-testing | 1.7.7 | jar | Google App Engine Terms of Service |
com.google.guava | guava | 20.0 | jar | The Apache Software License, Version 2.0 |
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.appengine | appengine-api-1.0-sdk | 1.7.7 | jar | Google App Engine Terms of Service |
javax.servlet | servlet-api | 2.5 | jar | - |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.code.findbugs | jsr305 | 3.0.2 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-jdo | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
com.google.j2objc | j2objc-annotations | 1.1 | jar | The Apache Software License, Version 2.0 |
commons-logging | commons-logging | 1.2 | jar | The Apache Software License, Version 2.0 |
javax.jdo | jdo2-api | 2.3-eb | jar | Apache 2 |
javax.transaction | transaction-api | 1.1 | jar | - |
org.apache.httpcomponents | httpclient | 4.5.3 | jar | Apache License, Version 2.0 |
org.apache.httpcomponents | httpcore | 4.4.6 | jar | Apache License, Version 2.0 |
The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
commons-codec | commons-codec | 1.6 | jar | The Apache Software License, Version 2.0 |
Google App Engine Terms of Service: appengine-api-1.0-sdk, appengine-api-stubs, appengine-testing
Apache 2: JDO2 API
Unknown: servlet-api, transaction-api
Apache License, Version 2.0: Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, Commons Codec, FindBugs-jsr305, Google App Engine extensions to the Google HTTP Client Library for Java., Google App Engine extensions to the Google OAuth Client Library for Java., Google HTTP Client Library for Java, Google OAuth Client Library for Java, Guava: Google Core Libraries for Java, J2ObjC Annotations, JDO extensions to the Google HTTP Client Library for Java., Servlet and JDO extensions to the Google OAuth Client Library for Java.
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
appengine-api-1.0-sdk-1.7.7.jar | 30.66 MB | 6,566 | 6,044 | 86 | 1.6 | debug |
appengine-api-stubs-1.7.7.jar | 12.16 MB | 3,098 | 2,785 | 167 | 1.6 | debug |
appengine-testing-1.7.7.jar | 10.32 MB | 2,293 | 2,265 | 26 | 1.6 | debug |
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-appengine-${project.http.version}.jar | 15.81 kB | 21 | 11 | 2 | 1.6 | debug |
google-http-client-jdo-${project.http.version}.jar | 8.08 kB | 13 | 5 | 1 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
google-oauth-client-${project.oauth.version}.jar | 61.64 kB | 57 | 47 | 3 | 1.6 | debug |
google-oauth-client-servlet-${project.oauth.version}.jar | 22.92 kB | 24 | 11 | 4 | 1.6 | debug |
commons-codec-1.6.jar | 227.32 kB | 218 | 76 | 6 | 1.5 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
jdo2-api-2.3-eb.jar | 188.18 kB | 226 | 182 | 7 | 1.5 | debug |
servlet-api-2.5.jar | 102.65 kB | 68 | 42 | 2 | 1.5 | debug |
transaction-api-1.1.jar | 14.72 kB | 24 | 18 | 2 | 1.3 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
httpclient-4.5.3.jar | 730.27 kB | 507 | 466 | 24 | 1.6 | debug |
httpcore-4.4.6.jar | 316.23 kB | 282 | 252 | 17 | 1.6 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
19 | 57.68 MB | 15,842 | 14,523 | 417 | 1.6 | 19 |
compile: 12 | compile: 1.67 MB | compile: 1,488 | compile: 1,267 | compile: 82 | - | compile: 12 |
test: 4 | test: 25.03 MB | test: 7,502 | test: 7,094 | test: 241 | - | test: 4 |
provided: 3 | provided: 30.98 MB | provided: 6,852 | provided: 6,162 | provided: 94 | - | provided: 3 |
Repo ID | URL | Release | Snapshot | Blacklisted |
---|---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes | - |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | central |
---|---|---|
com.google.appengine:appengine-api-1.0-sdk:jar:1.7.7 | - | - |
com.google.appengine:appengine-api-stubs:jar:1.7.7 | - | - |
com.google.appengine:appengine-testing:jar:1.7.7 | - | - |
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - |
com.google.guava:guava:jar:20.0 | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - |
com.google.http-client:google-http-client-appengine:jar:${project.http.version} | - | - |
com.google.http-client:google-http-client-jdo:jar:${project.http.version} | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - |
com.google.oauth-client:google-oauth-client:jar:${project.oauth.version} | - | - |
com.google.oauth-client:google-oauth-client-servlet:jar:${project.oauth.version} | - | - |
commons-codec:commons-codec:jar:1.6 | - | - |
commons-logging:commons-logging:jar:1.2 | - | - |
javax.jdo:jdo2-api:jar:2.3-eb | - | - |
javax.servlet:servlet-api:jar:2.5 | - | - |
javax.transaction:transaction-api:jar:1.1 | - | - |
junit:junit:jar:4.8.2 | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.3 | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.6 | - | - |
Total | apache.snapshots | central |
19 (compile: 12, test: 4, provided: 3) | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.code.findbugs | jsr305 | 3.0.2 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.guava | guava | 20.0 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-jackson | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.j2objc | j2objc-annotations | 1.1 | jar | The Apache Software License, Version 2.0 |
commons-logging | commons-logging | 1.2 | jar | The Apache Software License, Version 2.0 |
org.apache.httpcomponents | httpclient | 4.5.3 | jar | Apache License, Version 2.0 |
org.apache.httpcomponents | httpcore | 4.4.6 | jar | Apache License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
org.codehaus.jackson | jackson-core-asl | 1.9.11 | jar | The Apache Software License, Version 2.0 |
The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
commons-codec | commons-codec | 1.6 | jar | The Apache Software License, Version 2.0 |
Apache License, Version 2.0: Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, Commons Codec, FindBugs-jsr305, Google HTTP Client Library for Java, Google OAuth Client Library for Java, Guava: Google Core Libraries for Java, J2ObjC Annotations, Jackson, Jackson extensions to the Google HTTP Client Library for Java.
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-jackson-${project.http.version}.jar | 6.27 kB | 12 | 4 | 1 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
commons-codec-1.6.jar | 227.32 kB | 218 | 76 | 6 | 1.5 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
httpclient-4.5.3.jar | 730.27 kB | 507 | 466 | 24 | 1.6 | debug |
httpcore-4.4.6.jar | 316.23 kB | 282 | 252 | 17 | 1.6 | debug |
jackson-core-asl-1.9.11.jar | 226.69 kB | 137 | 121 | 8 | 1.5 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
11 | 4.37 MB | 3,601 | 3,238 | 126 | 1.6 | 11 |
compile: 6 | compile: 1.36 MB | compile: 1,123 | compile: 993 | compile: 63 | - | compile: 6 |
test: 4 | test: 2.78 MB | test: 2,260 | test: 2,169 | test: 57 | - | test: 4 |
provided: 1 | provided: 227.32 kB | provided: 218 | provided: 76 | provided: 6 | - | provided: 1 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.guava:guava:jar:20.0 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-jackson:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
commons-codec:commons-codec:jar:1.6 | - | - | - |
commons-logging:commons-logging:jar:1.2 | - | - | - |
junit:junit:jar:4.8.2 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.3 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.6 | - | - | - |
org.codehaus.jackson:jackson-core-asl:jar:1.9.11 | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
11 (compile: 6, test: 4, provided: 1) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.oauth-client | google-oauth-client | ${project.oauth.version} | jar | The Apache Software License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.guava | guava | 20.0 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client-jackson | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.code.findbugs | jsr305 | 3.0.2 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
com.google.j2objc | j2objc-annotations | 1.1 | jar | The Apache Software License, Version 2.0 |
commons-logging | commons-logging | 1.2 | jar | The Apache Software License, Version 2.0 |
org.apache.httpcomponents | httpclient | 4.5.3 | jar | Apache License, Version 2.0 |
org.apache.httpcomponents | httpcore | 4.4.6 | jar | Apache License, Version 2.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
org.codehaus.jackson | jackson-core-asl | 1.9.11 | jar | The Apache Software License, Version 2.0 |
The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
commons-codec | commons-codec | 1.6 | jar | The Apache Software License, Version 2.0 |
Apache License, Version 2.0: Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, Commons Codec, FindBugs-jsr305, Google HTTP Client Library for Java, Google OAuth Client Library for Java, Guava: Google Core Libraries for Java, J2ObjC Annotations, Jackson, Jackson extensions to the Google HTTP Client Library for Java., Java 6 (and higher) extensions to the Google OAuth Client Library for Java.
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-jackson-${project.http.version}.jar | 6.27 kB | 12 | 4 | 1 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
google-oauth-client-${project.oauth.version}.jar | 61.64 kB | 57 | 47 | 3 | 1.6 | debug |
commons-codec-1.6.jar | 227.32 kB | 218 | 76 | 6 | 1.5 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
httpclient-4.5.3.jar | 730.27 kB | 507 | 466 | 24 | 1.6 | debug |
httpcore-4.4.6.jar | 316.23 kB | 282 | 252 | 17 | 1.6 | debug |
jackson-core-asl-1.9.11.jar | 226.69 kB | 137 | 121 | 8 | 1.5 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
12 | 4.43 MB | 3,658 | 3,285 | 129 | 1.6 | 12 |
compile: 7 | compile: 1.42 MB | compile: 1,180 | compile: 1,040 | compile: 66 | - | compile: 7 |
test: 4 | test: 2.78 MB | test: 2,260 | test: 2,169 | test: 57 | - | test: 4 |
provided: 1 | provided: 227.32 kB | provided: 218 | provided: 76 | provided: 6 | - | provided: 1 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | central |
---|---|---|---|
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - |
com.google.guava:guava:jar:20.0 | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - |
com.google.http-client:google-http-client-jackson:jar:${project.http.version} | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - |
com.google.oauth-client:google-oauth-client:jar:${project.oauth.version} | - | - | - |
commons-codec:commons-codec:jar:1.6 | - | - | - |
commons-logging:commons-logging:jar:1.2 | - | - | - |
junit:junit:jar:4.8.2 | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.3 | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.6 | - | - | - |
org.codehaus.jackson:jackson-core-asl:jar:1.9.11 | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | central |
12 (compile: 7, test: 4, provided: 1) | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.oauth-client | google-oauth-client-java6 | ${project.oauth.version} | jar | The Apache Software License, Version 2.0 |
org.mortbay.jetty | jetty | 6.1.26 | jar | Apache Software License - Version 2.0-Eclipse Public License - Version 1.0 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.code.findbugs | jsr305 | 3.0.2 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
com.google.j2objc | j2objc-annotations | 1.1 | jar | The Apache Software License, Version 2.0 |
com.google.oauth-client | google-oauth-client | ${project.oauth.version} | jar | The Apache Software License, Version 2.0 |
commons-logging | commons-logging | 1.2 | jar | The Apache Software License, Version 2.0 |
org.apache.httpcomponents | httpclient | 4.5.3 | jar | Apache License, Version 2.0 |
org.apache.httpcomponents | httpcore | 4.4.6 | jar | Apache License, Version 2.0 |
org.mortbay.jetty | jetty-util | 6.1.26 | jar | Apache Software License - Version 2.0-Eclipse Public License - Version 1.0 |
org.mortbay.jetty | servlet-api | 2.5-20081211 | jar | Apache License Version 2.0 |
The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
commons-codec | commons-codec | 1.6 | jar | The Apache Software License, Version 2.0 |
Eclipse Public License - Version 1.0: Jetty Server, Jetty Utilities
Apache Software License - Version 2.0: Jetty Server, Jetty Utilities
Apache License, Version 2.0: Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, Commons Codec, FindBugs-jsr305, Google HTTP Client Library for Java, Google OAuth Client Library for Java, J2ObjC Annotations, Java 6 (and higher) extensions to the Google OAuth Client Library for Java., Jetty extensions to the Google OAuth Client Library for Java.
Apache License Version 2.0: Servlet Specification API
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
google-oauth-client-${project.oauth.version}.jar | 61.64 kB | 57 | 47 | 3 | 1.6 | debug |
google-oauth-client-java6-${project.oauth.version}.jar | 12.66 kB | 18 | 8 | 1 | 1.6 | debug |
commons-codec-1.6.jar | 227.32 kB | 218 | 76 | 6 | 1.5 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
httpclient-4.5.3.jar | 730.27 kB | 507 | 466 | 24 | 1.6 | debug |
httpcore-4.4.6.jar | 316.23 kB | 282 | 252 | 17 | 1.6 | debug |
jetty-6.1.26.jar | 527.26 kB | 267 | 237 | 14 | 1.4 | debug |
jetty-util-6.1.26.jar | 172.98 kB | 120 | 105 | 6 | 1.4 | debug |
servlet-api-2.5-20081211.jar | 130.99 kB | 79 | 42 | 2 | 1.4 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
13 | 2.70 MB | 2,149 | 1,738 | 125 | 1.6 | 13 |
compile: 11 | compile: 2.25 MB | compile: 1,664 | compile: 1,432 | compile: 89 | - | compile: 11 |
test: 1 | test: 231.78 kB | test: 267 | test: 230 | test: 30 | - | test: 1 |
provided: 1 | provided: 227.32 kB | provided: 218 | provided: 76 | provided: 6 | - | provided: 1 |
Repo ID | URL | Release | Snapshot | Blacklisted |
---|---|---|---|---|
codehaus.org | http://snapshots.repository.codehaus.org | - | Yes | Yes |
apache.snapshots | http://repository.apache.org/snapshots | - | Yes | - |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes | - |
java.net | http://download.java.net/maven/2 | Yes | - | - |
m1.java.net | http://download.java.net/maven/1 | Yes | - | - |
central | https://repo.maven.apache.org/maven2 | Yes | - | - |
Repository locations for each of the Dependencies.
Artifact | apache.snapshots | sonatype-nexus-snapshots | java.net | m1.java.net | central |
---|---|---|---|---|---|
com.google.code.findbugs:jsr305:jar:3.0.2 | - | - | - | - | - |
com.google.http-client:google-http-client:jar:${project.http.version} | - | - | - | - | - |
com.google.j2objc:j2objc-annotations:jar:1.1 | - | - | - | - | - |
com.google.oauth-client:google-oauth-client:jar:${project.oauth.version} | - | - | - | - | - |
com.google.oauth-client:google-oauth-client-java6:jar:${project.oauth.version} | - | - | - | - | - |
commons-codec:commons-codec:jar:1.6 | - | - | - | - | - |
commons-logging:commons-logging:jar:1.2 | - | - | - | - | - |
junit:junit:jar:4.8.2 | - | - | - | - | - |
org.apache.httpcomponents:httpclient:jar:4.5.3 | - | - | - | - | - |
org.apache.httpcomponents:httpcore:jar:4.4.6 | - | - | - | - | - |
org.mortbay.jetty:jetty:jar:6.1.26 | - | - | - | - | - |
org.mortbay.jetty:jetty-util:jar:6.1.26 | - | - | - | - | - |
org.mortbay.jetty:servlet-api:jar:2.5-20081211 | - | - | - | - | - |
Total | apache.snapshots | sonatype-nexus-snapshots | java.net | m1.java.net | central |
13 (compile: 11, test: 1, provided: 1) | 0 | 0 | 0 | 0 | 0 |
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.http-client | google-http-client-jdo | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
com.google.oauth-client | google-oauth-client | ${project.oauth.version} | jar | The Apache Software License, Version 2.0 |
javax.jdo | jdo2-api | 2.3-eb | jar | Apache 2 |
The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.guava | guava | 20.0 | jar | The Apache Software License, Version 2.0 |
junit | junit | 4.8.2 | jar | Common Public License Version 1.0 |
mysql | mysql-connector-java | 5.1.18 | jar | The GNU General Public License, Version 2 |
org.datanucleus | datanucleus-api-jdo | 3.2.1 | jar | The Apache Software License, Version 2.0 |
org.datanucleus | datanucleus-core | 3.2.2 | jar | The Apache Software License, Version 2.0 |
org.datanucleus | datanucleus-rdbms | 3.2.1 | jar | The Apache Software License, Version 2.0 |
The following is a list of transitive dependencies for this project. Transitive dependencies are the dependencies of the project dependencies.
The following is a list of compile dependencies for this project. These dependencies are required to compile and run the application:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
com.google.code.findbugs | jsr305 | 3.0.2 | jar | The Apache Software License, Version 2.0 |
com.google.http-client | google-http-client | ${project.http.version} | jar | The Apache Software License, Version 2.0 |
com.google.j2objc | j2objc-annotations | 1.1 | jar | The Apache Software License, Version 2.0 |
commons-logging | commons-logging | 1.2 | jar | The Apache Software License, Version 2.0 |
javax.transaction | transaction-api | 1.1 | jar | - |
org.apache.httpcomponents | httpclient | 4.5.3 | jar | Apache License, Version 2.0 |
org.apache.httpcomponents | httpcore | 4.4.6 | jar | Apache License, Version 2.0 |
The following is a list of provided dependencies for this project. These dependencies are required to compile the application, but should be provided by default when using the library:
GroupId | ArtifactId | Version | Type | License |
---|---|---|---|---|
commons-codec | commons-codec | 1.6 | jar | The Apache Software License, Version 2.0 |
Apache 2: JDO2 API
Unknown: servlet-api, transaction-api
Apache License, Version 2.0: Apache HttpClient, Apache HttpCore
Common Public License Version 1.0: JUnit
The Apache Software License, Version 2.0: Apache Commons Logging, Commons Codec, DataNucleus Core, DataNucleus JDO API plugin, DataNucleus RDBMS, FindBugs-jsr305, Google HTTP Client Library for Java, Google OAuth Client Library for Java, Guava: Google Core Libraries for Java, J2ObjC Annotations, JDO extensions to the Google HTTP Client Library for Java., Servlet and JDO extensions to the Google OAuth Client Library for Java.
The GNU General Public License, Version 2: MySQL Connector/J
Filename | Size | Entries | Classes | Packages | JDK Rev | Debug |
---|---|---|---|---|---|---|
jsr305-3.0.2.jar | 19.47 kB | 46 | 35 | 3 | 1.5 | debug |
guava-20.0.jar | 2.33 MB | 1,844 | 1,814 | 18 | 1.6 | debug |
google-http-client-${project.http.version}.jar | 261.81 kB | 223 | 200 | 16 | 1.6 | debug |
google-http-client-jdo-${project.http.version}.jar | 8.08 kB | 13 | 5 | 1 | 1.6 | debug |
j2objc-annotations-1.1.jar | 8.58 kB | 23 | 12 | 1 | 1.5 | debug |
google-oauth-client-${project.oauth.version}.jar | 61.64 kB | 57 | 47 | 3 | 1.6 | debug |
commons-codec-1.6.jar | 227.32 kB | 218 | 76 | 6 | 1.5 | debug |
commons-logging-1.2.jar | 60.38 kB | 42 | 28 | 2 | 1.2 | debug |
jdo2-api-2.3-eb.jar | 188.18 kB | 226 | 182 | 7 | 1.5 | debug |
servlet-api-2.5.jar | 102.65 kB | 68 | 42 | 2 | 1.5 | debug |
transaction-api-1.1.jar | 14.72 kB | 24 | 18 | 2 | 1.3 | debug |
junit-4.8.2.jar | 231.78 kB | 267 | 230 | 30 | 1.5 | debug |
mysql-connector-java-5.1.18.jar | 771.37 kB | 279 | 245 | 12 | 1.6 | debug |
httpclient-4.5.3.jar | 730.27 kB | 507 | 466 | 24 | 1.6 | debug |
httpcore-4.4.6.jar | 316.23 kB | 282 | 252 | 17 | 1.6 | debug |
datanucleus-api-jdo-3.2.1.jar | 329.11 kB | 180 | 126 | 6 | 1.5 | debug |
datanucleus-core-3.2.2.jar | 1.72 MB | 943 | 841 | 50 | 1.5 | debug |
datanucleus-rdbms-3.2.1.jar | 1.69 MB | 768 | 715 | 29 | 1.6 | debug |
Total | Size | Entries | Classes | Packages | JDK Rev | Debug |
18 | 8.99 MB | 6,010 | 5,334 | 229 | 1.6 | 18 |
compile: 10 | compile: 1.63 MB | compile: 1,443 | compile: 1,245 | compile: 76 | - | compile: 10 |
test: 6 | test: 7.04 MB | test: 4,281 | test: 3,971 | test: 145 | - | test: 6 |
provided: 2 | provided: 329.96 kB | provided: 286 | provided: 118 | provided: 8 | - | provided: 2 |
Repo ID | URL | Release | Snapshot |
---|---|---|---|
apache.snapshots | http://repository.apache.org/snapshots | - | Yes |
sonatype-nexus-snapshots | https://oss.sonatype.org/content/repositories/snapshots | - | Yes |
DN_M2_Repo | http://www.datanucleus.org/downloads/maven2/ | Yes | - |
central | https://repo.maven.apache.org/maven2 | Yes | - |
Repository locations for each of the Dependencies.