Giter Site home page Giter Site logo

coinbase-java's Introduction

Coinbase Android SDK

Platform SDK version License

An easy way to buy, sell, send, and accept bitcoin through the Coinbase API.

This library is a wrapper around the Coinbase JSON API. It supports OAuth 2.0 for performing actions on other people's accounts.

Working with the SDK:

Other resources:

Installation

Using Maven

Add the following dependency to your project's Maven pom.xml:

<dependency>
	<groupId>com.coinbase</groupId>
	<artifactId>coinbase-android</artifactId>
	<version>3.0.0</version>
</dependency>

The library will automatically be pulled from Maven Central.

Using Gradle

dependencies {
    compile 'com.coinbase:coinbase-android:3.0.0'
}

Manual

You can build this library aar and all its dependencies to a folder as follows:

git clone [email protected]:coinbase/coinbase-java.git
./gradlew coinbase-java:assembleRelease
mv coinbase-java/build/outputs/aar/coinbase-java-release.aar $YOUR_JAR_DIRECTORY

Usage

Basic setup (only accessing public data)

Configure coinbase object to access public data.

// Set up Coinbase object for public data access only
val coinbase = CoinbaseBuilder.withPublicDataAccess(applicationContext).build()

// Get any of public data resource and request data from it
coinbase.currenciesResource.supportedCurrencies.enqueue(callback)

When 'coinbase' instance is setup for public data access you can use these resources:

  1. currenciesResource
  2. exchangeRatesResource
  3. pricesResource
  4. currenciesResource

OAuth 2.0 Authentication (accessing user's account data)

Start by creating a new OAuth 2.0 application. Register redirect url under Permitted Redirect URIs. This URL will be used after successful authorization. It should be an URL that your application is capable to handle, so auth result delivered back to your app.

After you create OAuth 2.0 application, go to application web page that will have an address like https://www.coinbase.com/oauth/applications/{your_app_id}. Copy Client Id and Client Secret to your android application.

Your android application can now be authorized to access user account data:

// Set up Coinbase object to access user data
val coinbase = CoinbaseBuilder.withClientIdAndSecret(applicationContext, clientId, clientSecret).build()

// Begin OAuth 2.0 flow with web sign in
coinbase.beginAuthorization(activityContext, redirectUri, scopes)

// Get result of web authorization as an intent with mentioned redirectUri. Complete OAuth 2.0 flow
override fun onNewIntent(intent: Intent?) {
        super.onNewIntent(intent)
        if (intent == null) return
        coinbase.completeAuthorizationRx(intent)
                .observeOn(AndroidSchedulers.mainThread())
                .doOnSubscribe { showProgress() }
                .doFinally { hideProgress() }
                .subscribe(subscriber)
}

After authorization suceseed, you can call methods on coinbase similar to the ones described in the Wallet Endpoints documentation. For example:

coinbase.userResource.getAuthInfo.enqueue(callback);

Examples

Get User currencies accounts

// get user accounts asynchronously.
coinbase.accountResource.getAccounts().enqueue(object: Callback<PagedResponse<Account>> {

    override fun onSuccess(result: PagedResponse<Account>?) {
            TODO("Process accounts data")
    }

    override fun onFailure(t: Throwable?) {
        TODO("process error")
    }
})

Get a specific account.

coinbase.accountResource.getAccount(accountId).enqueue(callback)

The account name can be changed with

coinbase.accountResource.updateAccount(accountId, newName).enqueue(callback)

Also, an account can be deleted

coinbase.accountResource.deleteAccount(accountId).enqueue(callback)

Send bitcoin

val sendMoneyRequest = SendMoneyRequest("[email protected]", "0.01", "BTC")
coinbase.transactionsResource.sendMoney(accountId, twoFactorAuthToken, sendMoneyRequest).enqueue(callback)

The to value can be a bitcoin address and a description (notes) can be attached to the money. The description is only visible on Coinbase (not on the general bitcoin network).

val sendMoneyRequest = SendMoneyRequest("[email protected]", "2.25", "USD")
sendMoneyRequest.setDescription("Thanks for the coffee!")
coinbase.transactionsResource.sendMoney(accountId, twoFactorAuthToken, sendMoneyRequest).enqueue(callback)

Request bitcoin

This will send an email to the recipient, requesting payment, and give them an easy way to pay.

// Synchronous calls are used for simplicity
val moneyRequest = MoneyRequest("[email protected]", "100", "USD")
moneyRequest.setDescription("Invoice for window cleaning")
val moneyRequest = coinbase.transactionsResource.requestMoney(accountId, moneyRequest).execute().data

coinbase.transactionsResource.resendMoneyRequest(accountId, moneyRequest.id).execute()

coinbase.transactionsResource.cancelRequest(accountId, moneyRequest.id).execute()

// From the other side

coinbase.transactionsResource.completeRequest(accountId, transactionId).execute()

List your current transactions

By default sorted in descending order by createdAt, 30 transactions per page

// Synchronous call is used for simplicity
var transactions = coinbase.transactionsResource.listTransactions(accountId).execute().data
transactions[0].id

Transactions will always have an id attribute which is the primary way to identify them through the Coinbase API.

Get transaction details

This will fetch the details/status of a transaction that was made within Coinbase

// Synchronous call is used for simplicity
val t = coinbase.transactionsResource.showTransaction(accountId, transactionId).execute().data
t.status; // Transaction.STATUS_PENDING

Buy or Sell bitcoin

Buying and selling bitcoin requires you to add a payment method through the web app first.

Then you can call buy or sell and pass a quantity of bitcoin you want to buy.

val transferOrder = TransferOrderBody("0.01", "BTC", paymentMethodId)
// Synchronous call is used for simplicity
coinbase.buysResource.placeBuyOrder(accountId,transferOrder).execute()
val transferOrder = TransferOrderBody("0.01", "BTC", paymentMethodId)
// Synchronous call is used for simplicity
coinbase.sellsResource.placeSellOrder(accountId, transferOrder).execute()

Listing Buy/Sell History

You can use listBuys, listSells to view past buys and sells.

coinbase.buysResource.listBuys(accountId).enqueue(callback)
coinbase.sellsResource.listSells(accountId).enqueue(callback)

Check out the sample app with example of how to use the SDK (both async and Rx).

Proguard setup

If you are using proguard, include following lines to the application proguard properties file.

-dontwarn okio.**
-dontwarn retrofit2.**

Security Notes

When creating an API Key, make sure you only grant it the permissions necessary for your application to function.

You should take precautions to store your API key securely in your application. How to do this is application specific, but it's something you should research if you have never done this before.

Testing

If you'd like to contribute code or modify this library, you can run the test suite with:

./gradlew :coinbase-java:test

Contributing

  1. Fork this repo and make changes in your own copy
  2. Add Git pre-commit hook by executing ./add_precommit_git_hook.sh. This will add Checkstyle and pmd checks before commit
  3. Add a test if applicable and run the existing tests with ./gradlew :coinbase-java:test to make sure they pass
  4. Commit your changes and push to your fork git push origin master
  5. Create a new pull request and submit it back to us!

coinbase-java's People

Contributors

aianus avatar amacneil avatar anujmiddha avatar dbautist avatar dependabot[bot] avatar erichkleung avatar hieronymus777 avatar isaacwaller avatar janechung avatar jcarnide avatar johnnycoinbase avatar maksim-s avatar naturalwarren avatar prayagverma avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

coinbase-java's Issues

No callback notification sent when receiving new ETH payment

I generated an ETH address using Coinbase v1 Java and hooked up with a callback url. However, I don't receive any notification from Coinbase when that address receive new ETH payment. I have checked the ETH address and the callback url was hooked up successfully. I then checked the callback history and I found that there is no history, which means that Coinbase never send any notification to the callback url. This is strange because I have used the similar method to generate BTC address and Coinbase does send notification when receiving BTC payment.
2018-06-09 2 34 06
2018-06-09 2 34 18

Scopes don't match current API version.

Hi is this library usable?

I have a very simple configuration :

final String COINBASE_API_KEY = ""******";";
final String COINBASE_API_SECRET = "******";
Coinbase cb = new CoinbaseBuilder().withApiKey(COINBASE_API_KEY,COINBASE_API_SECRET).build();
cb.getAccounts();

Which results on

Exception in thread "main" com.coinbase.api.exception.CoinbaseException: Scopes don't match current API version.
	at com.coinbase.api.CoinbaseImpl.handleErrors(CoinbaseImpl.java:1330)
	at com.coinbase.api.CoinbaseImpl.doHttp(CoinbaseImpl.java:1276)
	at com.coinbase.api.CoinbaseImpl.get(CoinbaseImpl.java:1303)
	at com.coinbase.api.CoinbaseImpl.getAccounts(CoinbaseImpl.java:182)
	at com.coinbase.api.CoinbaseImpl.getAccounts(CoinbaseImpl.java:154)
	at coinBase.Main.main(Main.java:20)

How to get btc address ? can't get address from url ?

I want to show bitcoin address from using coinbase api but the following response showing when try to get access from api
https://api.coinbase.com/v2/accounts { "errors": [ {"id": "invalid_scope",
"message": "Invalid scope",
"url": "https://developers.coinbase.com/api#permissions-scopes"}]}
This is show invalid scope,but i granted permission for "scopes": [ "wallet:user:read","wallet:accounts:read","wallet:transactions:read", "wallet:payment-methods:read","wallet:addresses:read","wallet:addresses:create"],
all permission

Commerce support?

I'm looking for commerce support in Java.

The official docs are kinda sparse - no formal definition of the payload, no information on what is expected to be returned, etc.

Is a Java SDK planned?

No .setFees method for sending money, coinbase exception

I'm getting an exception back from the coinbase service when attempting to send money:

com.coinbase.api.exception.CoinbaseException: This transaction requires a 0.0002 BTC fee to be accepted by the bitcoin network. Do you want to add it? (This fee does not go to Coinbase.)
at com.coinbase.api.CoinbaseImpl.handleErrors(CoinbaseImpl.java:993)...

There is no method to set fees for transactions outlined in the doc below. How do I do this to get past the exception?
https://coinbase.com/api/doc/1.0/transactions/send_money.html

generateReceiveAddress error

coinbase.generateReceiveAddress().getAddress()

error:
https://coinbase.com/api/v1/account/generate_receive_address

how to contribute a library?

I've built a library to handle Coinbase Commerce in java.

I'd be open to contributing it (or parts of it). I figure, at the least, the underlying model mapped to POJOs would be useful to others.

Exception: Multiple accounts not supported

I created an individual account and generated an API key with all v1 permissions. Then, I installed the coinbase java maven library and used the below code to create a new account but got exception. Below is the code to create new account

Coinbase cb = new CoinbaseBuilder().withApiKey(Bit7PayConstants.COINBASE_KEY,Bit7PayConstants.COINBASE_SECRET).build();
Account acc = new Account();
acc.setName(account_id);
Account a = cb.createAccount(acc);

Exception
com.coinbase.api.exception.CoinbaseException: Multiple accounts not supported

Need to know how to create multiple accounts for all my wallet app users and if there is any limit on the number of accounts I can create.

Add a RELEASING.md

It's not clear to me how to build this project with the mix of Gradle/Maven present on the v2.0.0 branch or how to cut a release.

Issue trying to compile jar

I am trying to compile the jar, and I can't seem to get the mvn package to work.

Here is the error message I get when I try to use this. It says I am missing a file, but I see the file in windows exporer.

�[1mApache Maven 3.5.0 (ff8f5e7444045639af65f6095c62210b5713f426; 2017-04-03T12:39:06-07:00)�[m
Maven home: C:\Users\Administrator\Desktop\Coinbase API\apache-maven-3.5.0-bin\apache-maven-3.5.0
Java version: 1.7.0_80, vendor: Oracle Corporation
Java home: C:\DataAnalytics\Platform\jdk1.7.0_80\jre
Default locale: en_US, platform encoding: Cp1252
OS name: "windows server 2012 r2", version: "6.3", arch: "amd64", family: "windows"
[�[1;36mDEBUG�[m] Created new class realm maven.api
[�[1;36mDEBUG�[m] Importing foreign packages into class realm maven.api
[�[1;36mDEBUG�[m] Imported: javax.enterprise.inject.* < plexus.core
[�[1;36mDEBUG�[m] Imported: javax.enterprise.util.* < plexus.core
[�[1;36mDEBUG�[m] Imported: javax.inject.* < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.* < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.artifact < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.classrealm < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.cli < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.configuration < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.exception < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.execution < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.execution.scope < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.lifecycle < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.model < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.monitor < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.plugin < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.profiles < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.project < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.reporting < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.repository < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.rtinfo < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.settings < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.toolchain < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.usability < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.wagon.* < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.wagon.authentication < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.wagon.authorization < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.wagon.events < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.wagon.observers < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.wagon.proxy < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.wagon.repository < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.wagon.resource < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.classworlds < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.* < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.classworlds < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.component < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.configuration < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.container < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.context < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.lifecycle < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.logging < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.personality < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.* < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.artifact < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.collection < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.deployment < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.graph < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.impl < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.installation < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.internal.impl < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.metadata < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.repository < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.resolution < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.spi < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.transfer < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.version < plexus.core
[�[1;36mDEBUG�[m] Imported: org.fusesource.jansi.* < plexus.core
[�[1;36mDEBUG�[m] Imported: org.slf4j.* < plexus.core
[�[1;36mDEBUG�[m] Imported: org.slf4j.helpers.* < plexus.core
[�[1;36mDEBUG�[m] Imported: org.slf4j.spi.* < plexus.core
[�[1;36mDEBUG�[m] Populating class realm maven.api
[�[1;34mINFO�[m] Error stacktraces are turned on.
[�[1;36mDEBUG�[m] Message scheme: color
[�[1;36mDEBUG�[m] Message styles: �[1;36mdebug�[m �[1;34minfo�[m �[1;33mwarning�[m �[1;31merror�[m �[1;32msuccess�[m �[1;31mfailure�[m �[1mstrong�[m �[32mmojo�[m �[36mproject�[m
[�[1;36mDEBUG�[m] Reading global settings from C:\Users\Administrator\Desktop\Coinbase API\apache-maven-3.5.0-bin\apache-maven-3.5.0\conf\settings.xml
[�[1;36mDEBUG�[m] Reading user settings from C:\Users\Administrator.m2\settings.xml
[�[1;36mDEBUG�[m] Reading global toolchains from C:\Users\Administrator\Desktop\Coinbase API\apache-maven-3.5.0-bin\apache-maven-3.5.0\conf\toolchains.xml
[�[1;36mDEBUG�[m] Reading user toolchains from C:\Users\Administrator.m2\toolchains.xml
[�[1;36mDEBUG�[m] Using local repository at C:\Users\Administrator.m2\repository
[�[1;36mDEBUG�[m] Using manager EnhancedLocalRepositoryManager with priority 10.0 for C:\Users\Administrator.m2\repository
[�[1;34mINFO�[m] Scanning for projects...
[�[1;36mDEBUG�[m] Extension realms for project com.coinbase.api:coinbase-java:jar:1.11.0-SNAPSHOT: (none)
[�[1;36mDEBUG�[m] Looking up lifecycle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[�[1;36mDEBUG�[m] Extension realms for project org.sonatype.oss:oss-parent:pom:7: (none)
[�[1;36mDEBUG�[m] Looking up lifecycle mappings for packaging pom from ClassRealm[plexus.core, parent: null]
[�[1;36mDEBUG�[m] === REACTOR BUILD PLAN ================================================
[�[1;36mDEBUG�[m] Project: com.coinbase.api:coinbase-java:jar:1.11.0-SNAPSHOT
[�[1;36mDEBUG�[m] Tasks: [package]
[�[1;36mDEBUG�[m] Style: Regular
[�[1;36mDEBUG�[m] =======================================================================
[�[1;34mINFO�[m]
[�[1;34mINFO�[m] �[1m------------------------------------------------------------------------�[m
[�[1;34mINFO�[m] �[1mBuilding coinbase-java 1.11.0-SNAPSHOT�[m
[�[1;34mINFO�[m] �[1m------------------------------------------------------------------------�[m
[�[1;36mDEBUG�[m] Could not find metadata org.apache.maven.plugins:maven-source-plugin/maven-metadata.xml in local (C:\Users\Administrator.m2\repository)
[�[1;36mDEBUG�[m] Skipped remote request for org.apache.maven.plugins:maven-source-plugin/maven-metadata.xml, locally cached metadata up-to-date.
[�[1;36mDEBUG�[m] Resolved plugin version for org.apache.maven.plugins:maven-source-plugin to 3.0.1 from repository central (https://repo.maven.apache.org/maven2, default, releases)
[�[1;36mDEBUG�[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[�[1;36mDEBUG�[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[�[1;36mDEBUG�[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[�[1;36mDEBUG�[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[�[1;36mDEBUG�[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[�[1;36mDEBUG�[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[�[1;36mDEBUG�[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[�[1;36mDEBUG�[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[�[1;36mDEBUG�[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[�[1;36mDEBUG�[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[�[1;36mDEBUG�[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[�[1;36mDEBUG�[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[�[1;36mDEBUG�[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[�[1;36mDEBUG�[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[�[1;36mDEBUG�[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[�[1;36mDEBUG�[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[�[1;36mDEBUG�[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[�[1;36mDEBUG�[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[�[1;36mDEBUG�[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[�[1;36mDEBUG�[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[�[1;36mDEBUG�[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[�[1;36mDEBUG�[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[�[1;36mDEBUG�[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[�[1;36mDEBUG�[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[�[1;36mDEBUG�[m] === PROJECT BUILD PLAN ================================================
[�[1;36mDEBUG�[m] Project: com.coinbase.api:coinbase-java:1.11.0-SNAPSHOT
[�[1;36mDEBUG�[m] Dependencies (collect): []
[�[1;36mDEBUG�[m] Dependencies (resolve): [compile, runtime, test]
[�[1;36mDEBUG�[m] Repositories (dependencies): [sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots, default, snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[�[1;36mDEBUG�[m] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)]
[�[1;36mDEBUG�[m] -----------------------------------------------------------------------
[�[1;36mDEBUG�[m] Goal: org.apache.maven.plugins:maven-enforcer-plugin:1.0:enforce (enforce-maven)
[�[1;36mDEBUG�[m] Style: Regular
[�[1;36mDEBUG�[m] Configuration:

${enforcer.fail}
${enforcer.failFast}
${enforcer.ignoreCache}
${project}


(,2.1.0),(2.1.0,2.2.0),(2.2.0,)
Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively.


${session}
${enforcer.skip}

[�[1;36mDEBUG�[m] -----------------------------------------------------------------------
[�[1;36mDEBUG�[m] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:resources (default-resources)
[�[1;36mDEBUG�[m] Style: Regular
[�[1;36mDEBUG�[m] Configuration:


${encoding}
${maven.resources.escapeString}
${maven.resources.escapeWindowsPaths}
${maven.resources.includeEmptyDirs}

${maven.resources.overwrite}



${maven.resources.supportMultiLineFiltering}



[�[1;36mDEBUG�[m] -----------------------------------------------------------------------
[�[1;36mDEBUG�[m] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile)
[�[1;36mDEBUG�[m] Style: Regular
[�[1;36mDEBUG�[m] Configuration:





${maven.compiler.compilerId}
${maven.compiler.compilerReuseStrategy}
${maven.compiler.compilerVersion}
${maven.compiler.debug}
${maven.compiler.debuglevel}
${encoding}
${maven.compiler.executable}
${maven.compiler.failOnError}
${maven.compiler.forceJavacCompilerUse}
true

${maven.compiler.maxmem}
${maven.compiler.meminitial}
${mojoExecution}
${maven.compiler.optimize}


true
true
${maven.main.skip}
${maven.compiler.skipMultiThreadWarning}

1.6 ${lastModGranularityMs} 1.6 ${maven.compiler.useIncrementalCompilation} ${maven.compiler.verbose} [�[1;36mDEBUG�[m] ----------------------------------------------------------------------- [�[1;36mDEBUG�[m] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:testResources (default-testResources) [�[1;36mDEBUG�[m] Style: Regular [�[1;36mDEBUG�[m] Configuration: ${encoding} ${maven.resources.escapeString} ${maven.resources.escapeWindowsPaths} ${maven.resources.includeEmptyDirs} ${maven.resources.overwrite} ${maven.test.skip} ${maven.resources.supportMultiLineFiltering} [�[1;36mDEBUG�[m] ----------------------------------------------------------------------- [�[1;36mDEBUG�[m] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.1:testCompile (default-testCompile) [�[1;36mDEBUG�[m] Style: Regular [�[1;36mDEBUG�[m] Configuration: ${maven.compiler.compilerId} ${maven.compiler.compilerReuseStrategy} ${maven.compiler.compilerVersion} ${maven.compiler.debug} ${maven.compiler.debuglevel} ${encoding} ${maven.compiler.executable} ${maven.compiler.failOnError} ${maven.compiler.forceJavacCompilerUse} true ${maven.compiler.maxmem} ${maven.compiler.meminitial} ${mojoExecution} ${maven.compiler.optimize} true true ${maven.test.skip} ${maven.compiler.skipMultiThreadWarning} 1.6 ${lastModGranularityMs} 1.6 ${maven.compiler.testSource} ${maven.compiler.testTarget} ${maven.compiler.useIncrementalCompilation} ${maven.compiler.verbose} [�[1;36mDEBUG�[m] ----------------------------------------------------------------------- [�[1;36mDEBUG�[m] Goal: org.apache.maven.plugins:maven-surefire-plugin:2.17:test (default-test) [�[1;36mDEBUG�[m] Style: Regular [�[1;36mDEBUG�[m] Configuration: ${maven.test.additionalClasspath} ${argLine} ${childDelegation} ${maven.test.dependency.excludes} ${maven.surefire.debug} ${dependenciesToScan} ${disableXmlReport} ${enableAssertions} ${excludedGroups} ${surefire.failIfNoSpecifiedTests} ${failIfNoTests} ${forkCount} ${forkMode} ${surefire.timeout} ${groups} ${junitArtifactName} /usr/bin/java ${objectFactory} ${parallel} ${parallelOptimized} ${surefire.parallel.forcedTimeout} ${surefire.parallel.timeout} ${perCoreThreadCount} ${plugin.artifactMap} ${surefire.printSummary} ${project.artifactMap} ${maven.test.redirectTestOutputToFile} ${surefire.reportFormat} ${surefire.reportNameSuffix} ${reuseForks} ${maven.test.skip} ${maven.test.skip.exec} ${skipTests} ${test} ${maven.test.failure.ignore} ${testNGArtifactName} ${threadCount} ${threadCountClasses} ${threadCountMethods} ${threadCountSuites} ${trimStackTrace} ${surefire.useFile} ${surefire.useManifestOnlyJar} ${surefire.useSystemClassLoader} ${useUnlimitedThreads} ${basedir} [�[1;36mDEBUG�[m] ----------------------------------------------------------------------- [�[1;36mDEBUG�[m] Goal: org.apache.maven.plugins:maven-jar-plugin:2.4:jar (default-jar) [�[1;36mDEBUG�[m] Style: Regular [�[1;36mDEBUG�[m] Configuration: ${jar.finalName} ${jar.forceCreation} ${jar.skipIfEmpty} ${jar.useDefaultManifestFile} [�[1;36mDEBUG�[m] ======================================================================= [�[1;36mDEBUG�[m] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=34, ConflictIdSorter.graphTime=1, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=23, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=5, ConflictResolver.conflictItemCount=33, DefaultDependencyCollector.collectTime=192, DefaultDependencyCollector.transformTime=9} [�[1;36mDEBUG�[m] com.coinbase.api:coinbase-java:jar:1.11.0-SNAPSHOT [�[1;36mDEBUG�[m] joda-time:joda-time:jar:2.3:compile [�[1;36mDEBUG�[m] net.sf.opencsv:opencsv:jar:2.0:compile [�[1;36mDEBUG�[m] org.joda:joda-money:jar:0.9.1:compile [�[1;36mDEBUG�[m] com.fasterxml.jackson.datatype:jackson-datatype-joda:jar:2.4.0:compile [�[1;36mDEBUG�[m] com.fasterxml.jackson.core:jackson-annotations:jar:2.4.0:compile [�[1;36mDEBUG�[m] com.fasterxml.jackson.core:jackson-core:jar:2.4.0:compile [�[1;36mDEBUG�[m] com.fasterxml.jackson.core:jackson-databind:jar:2.4.0:compile [�[1;36mDEBUG�[m] org.powermock:powermock-module-junit4:jar:1.5.5:test [�[1;36mDEBUG�[m] org.powermock:powermock-module-junit4-common:jar:1.5.5:test [�[1;36mDEBUG�[m] org.powermock:powermock-core:jar:1.5.5:test [�[1;36mDEBUG�[m] org.javassist:javassist:jar:3.18.2-GA:test [�[1;36mDEBUG�[m] org.powermock:powermock-reflect:jar:1.5.5:test [�[1;36mDEBUG�[m] org.objenesis:objenesis:jar:2.1:test [�[1;36mDEBUG�[m] org.powermock:powermock-api-mockito:jar:1.5.5:test [�[1;36mDEBUG�[m] org.mockito:mockito-all:jar:1.9.5:test [�[1;36mDEBUG�[m] org.powermock:powermock-api-support:jar:1.5.5:test [�[1;36mDEBUG�[m] junit:junit:jar:4.11:test [�[1;36mDEBUG�[m] org.hamcrest:hamcrest-core:jar:1.3:test [�[1;36mDEBUG�[m] commons-codec:commons-codec:jar:1.9:compile [�[1;36mDEBUG�[m] commons-io:commons-io:jar:2.4:compile [�[1;36mDEBUG�[m] org.apache.httpcomponents:httpclient:jar:4.3.6:compile [�[1;36mDEBUG�[m] org.apache.httpcomponents:httpcore:jar:4.3.3:compile [�[1;36mDEBUG�[m] commons-logging:commons-logging:jar:1.1.3:compile [�[1;34mINFO�[m] [�[1;34mINFO�[m] �[1m--- �[0;32mmaven-enforcer-plugin:1.0:enforce�[m �[1m(enforce-maven)�[m @ �[36mcoinbase-java�[0;1m ---�[m [�[1;36mDEBUG�[m] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=1, ConflictMarker.nodeCount=100, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=32, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=3, ConflictResolver.conflictItemCount=90, DefaultDependencyCollector.collectTime=141, DefaultDependencyCollector.transformTime=4} [�[1;36mDEBUG�[m] org.apache.maven.plugins:maven-enforcer-plugin:jar:1.0: [�[1;36mDEBUG�[m] org.apache.maven:maven-artifact:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-api:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-project:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-settings:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-profile:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-model:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-artifact-manager:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-registry:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [�[1;36mDEBUG�[m] junit:junit:jar:3.8.2:test [�[1;36mDEBUG�[m] org.apache.maven:maven-core:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven.reporting:maven-reporting-api:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-10:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-repository-metadata:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-error-diagnostics:jar:2.0.9:compile [�[1;36mDEBUG�[m] commons-cli:commons-cli:jar:1.0:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-descriptor:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-monitor:jar:2.0.9:compile [�[1;36mDEBUG�[m] classworlds:classworlds:jar:1.1:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-utils:jar:1.5.8:compile [�[1;36mDEBUG�[m] commons-lang:commons-lang:jar:2.3:compile [�[1;36mDEBUG�[m] org.apache.maven.enforcer:enforcer-api:jar:1.0:compile [�[1;36mDEBUG�[m] org.apache.maven.enforcer:enforcer-rules:jar:1.0:compile [�[1;36mDEBUG�[m] org.apache.maven.shared:maven-common-artifact-filters:jar:1.2:compile [�[1;36mDEBUG�[m] org.apache.maven.shared:maven-plugin-testing-harness:jar:1.1:test [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-archiver:jar:1.0-alpha-7:test [�[1;36mDEBUG�[m] org.beanshell:bsh:jar:2.0b4:compile [�[1;36mDEBUG�[m] org.apache.maven.shared:maven-dependency-tree:jar:1.2:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-i18n:jar:1.0-beta-6:compile [�[1;36mDEBUG�[m] Created new class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0 [�[1;36mDEBUG�[m] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0 [�[1;36mDEBUG�[m] Imported: < maven.api [�[1;36mDEBUG�[m] Populating class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0 [�[1;36mDEBUG�[m] Included: org.apache.maven.plugins:maven-enforcer-plugin:jar:1.0 [�[1;36mDEBUG�[m] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.9 [�[1;36mDEBUG�[m] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-10 [�[1;36mDEBUG�[m] Included: commons-cli:commons-cli:jar:1.0 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-utils:jar:1.5.8 [�[1;36mDEBUG�[m] Included: commons-lang:commons-lang:jar:2.3 [�[1;36mDEBUG�[m] Included: org.apache.maven.enforcer:enforcer-api:jar:1.0 [�[1;36mDEBUG�[m] Included: org.apache.maven.enforcer:enforcer-rules:jar:1.0 [�[1;36mDEBUG�[m] Included: org.apache.maven.shared:maven-common-artifact-filters:jar:1.2 [�[1;36mDEBUG�[m] Included: org.beanshell:bsh:jar:2.0b4 [�[1;36mDEBUG�[m] Included: org.apache.maven.shared:maven-dependency-tree:jar:1.2 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-i18n:jar:1.0-beta-6 [�[1;36mDEBUG�[m] Configuring mojo org.apache.maven.plugins:maven-enforcer-plugin:1.0:enforce from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0, parent: sun.misc.Launcher$AppClassLoader@30a4effe] [�[1;36mDEBUG�[m] Configuring mojo 'org.apache.maven.plugins:maven-enforcer-plugin:1.0:enforce' with basic configurator --> [�[1;36mDEBUG�[m] (s) fail = true [�[1;36mDEBUG�[m] (s) failFast = false [�[1;36mDEBUG�[m] (f) ignoreCache = false [�[1;36mDEBUG�[m] (s) project = MavenProject: com.coinbase.api:coinbase-java:1.11.0-SNAPSHOT @ C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\pom.xml [�[1;36mDEBUG�[m] (s) version = (,2.1.0),(2.1.0,2.2.0),(2.2.0,) [�[1;36mDEBUG�[m] (f) message = Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. [�[1;36mDEBUG�[m] (s) rules = [org.apache.maven.plugins.enforcer.RequireMavenVersion@7f81c084] [�[1;36mDEBUG�[m] (s) session = org.apache.maven.execution.MavenSession@1f865b82 [�[1;36mDEBUG�[m] (s) skip = false [�[1;36mDEBUG�[m] -- end configuration -- [�[1;36mDEBUG�[m] Executing rule: org.apache.maven.plugins.enforcer.RequireMavenVersion [�[1;36mDEBUG�[m] Rule org.apache.maven.plugins.enforcer.RequireMavenVersion is cacheable. [�[1;36mDEBUG�[m] Detected Maven Version: 3.5.0 [�[1;36mDEBUG�[m] Detected Maven Version: 3.5.0 is allowed in the range (,2.1.0),(2.1.0,2.2.0),(2.2.0,). [�[1;34mINFO�[m] [�[1;34mINFO�[m] �[1m--- �[0;32mmaven-resources-plugin:2.6:resources�[m �[1m(default-resources)�[m @ �[36mcoinbase-java�[0;1m ---�[m [�[1;36mDEBUG�[m] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=77, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=26, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=74, DefaultDependencyCollector.collectTime=86, DefaultDependencyCollector.transformTime=1} [�[1;36mDEBUG�[m] org.apache.maven.plugins:maven-resources-plugin:jar:2.6: [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-api:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-project:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-profile:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-core:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile [�[1;36mDEBUG�[m] commons-cli:commons-cli:jar:1.0:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile [�[1;36mDEBUG�[m] classworlds:classworlds:jar:1.1:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-artifact:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-settings:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-model:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-monitor:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [�[1;36mDEBUG�[m] junit:junit:jar:3.8.1:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-utils:jar:2.0.5:compile [�[1;36mDEBUG�[m] org.apache.maven.shared:maven-filtering:jar:1.1:compile [�[1;36mDEBUG�[m] org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-interpolation:jar:1.13:compile [�[1;36mDEBUG�[m] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6 [�[1;36mDEBUG�[m] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6 [�[1;36mDEBUG�[m] Imported: < maven.api [�[1;36mDEBUG�[m] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6 [�[1;36mDEBUG�[m] Included: org.apache.maven.plugins:maven-resources-plugin:jar:2.6 [�[1;36mDEBUG�[m] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.6 [�[1;36mDEBUG�[m] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7 [�[1;36mDEBUG�[m] Included: commons-cli:commons-cli:jar:1.0 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4 [�[1;36mDEBUG�[m] Included: junit:junit:jar:3.8.1 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-utils:jar:2.0.5 [�[1;36mDEBUG�[m] Included: org.apache.maven.shared:maven-filtering:jar:1.1 [�[1;36mDEBUG�[m] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-interpolation:jar:1.13 [�[1;36mDEBUG�[m] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: sun.misc.Launcher$AppClassLoader@30a4effe] [�[1;36mDEBUG�[m] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:resources' with basic configurator --> [�[1;36mDEBUG�[m] (f) buildFilters = [] [�[1;36mDEBUG�[m] (f) encoding = UTF-8 [�[1;36mDEBUG�[m] (f) escapeWindowsPaths = true [�[1;36mDEBUG�[m] (s) includeEmptyDirs = false [�[1;36mDEBUG�[m] (s) outputDirectory = C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes [�[1;36mDEBUG�[m] (s) overwrite = false [�[1;36mDEBUG�[m] (f) project = MavenProject: com.coinbase.api:coinbase-java:1.11.0-SNAPSHOT @ C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\pom.xml [�[1;36mDEBUG�[m] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\main\resources, PatternSet [includes: {}, excludes: {}]}}] [�[1;36mDEBUG�[m] (f) session = org.apache.maven.execution.MavenSession@1f865b82 [�[1;36mDEBUG�[m] (f) supportMultiLineFiltering = false [�[1;36mDEBUG�[m] (f) useBuildFilters = true [�[1;36mDEBUG�[m] (s) useDefaultDelimiters = true [�[1;36mDEBUG�[m] -- end configuration -- [�[1;36mDEBUG�[m] properties used {java.vendor=Oracle Corporation, env.SYSTEMROOT=C:\Windows, env.USERDOMAIN_ROAMINGPROFILE=2012R2STD, sun.java.launcher=SUN_STANDARD, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.name=Windows Server 2012 R2, env.FP_NO_HOST_CHECK=NO, sun.boot.class.path=C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\resources.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\rt.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\sunrsasign.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\jsse.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\jce.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\charsets.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\jfr.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\classes, env.TMPDIR=C:\Users\ADMINI~1\AppData\Local\Temp\1, env.COMPUTERNAME=2012R2STD, env.PWD=C:/Users/Administrator/Desktop/Coinbase API/coinbase-java, env.ALLUSERSPROFILE=C:\ProgramData, sun.desktop=windows, java.vm.specification.vendor=Oracle Corporation, java.runtime.version=1.7.0_80-b15, env.HOMEPATH=\Users\Administrator, project.build.sourceEncoding=UTF-8, env.DISPLAY=needs-to-be-defined, user.name=Administrator, maven.build.version=Apache Maven 3.5.0 (ff8f5e7444045639af65f6095c62210b5713f426; 2017-04-03T12:39:06-07:00), env.SHELL=C:\Program Files\Git\usr\bin\bash, env.MSYSTEM=MINGW64, env.PATH=C:\Users\Administrator\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\local\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Users\Administrator\bin;C:\DataAnalytics\Platform\jdk1.7.0_80\bin;C:\gwdemo\release\DT92\Platform\apache-ant-1.8.2\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn;C:\Program Files\Microsoft SQL Server\120\Tools\Binn;C:\Program Files\Microsoft SQL Server\120\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn\ManagementStudio;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn;C:\DataAnalytics\GOSU\gosu-0.8.6.1-C\bin;C:\Program Files\Git\cmd;C:\Program Files\TortoiseGit\bin;C:\Program Files\nodejs;C:\Users\Administrator\AppData\Roaming\npm;C:\Program Files\Git\usr\bin\vendor_perl;C:\Program Files\Git\usr\bin\core_perl, user.language=en, env.EXEPATH=C:\Program Files\Git, env.WINDIR=C:\Windows, sun.boot.library.path=C:\DataAnalytics\Platform\jdk1.7.0_80\jre\bin, classworlds.conf=C:/Users/Administrator/Desktop/Coinbase API/apache-maven-3.5.0-bin/apache-maven-3.5.0/bin/m2.conf, env.GOSU_HOME=C:\DataAnalytics\GOSU\gosu-0.8.6.1-C, powermock.version=1.5.5, env.MSYSTEM_CHOST=x86_64-w64-mingw32, java.version=1.7.0_80, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 37 Stepping 1, GenuineIntel, user.timezone=America/Los_Angeles, env.MINGW_PREFIX=C:/Program Files/Git/mingw64, env.TEMP=C:\Users\ADMINI~1\AppData\Local\Temp\1, sun.arch.data.model=64, java.endorsed.dirs=C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\endorsed, sun.cpu.isalist=amd64, env.HOMEDRIVE=C:, sun.jnu.encoding=Cp1252, file.encoding.pkg=sun.io, env.SHLVL=1, env.SYSTEMDRIVE=C:, file.separator=\, env.HOSTNAME=2012r2std, java.specification.name=Java Platform API Specification, maven.conf=C:/Users/Administrator/Desktop/Coinbase API/apache-maven-3.5.0-bin/apache-maven-3.5.0/conf, java.class.version=51.0, org.slf4j.simpleLogger.defaultLogLevel=debug, user.country=US, env.PRINTER=Microsoft XPS Document Writer, java.home=C:\DataAnalytics\Platform\jdk1.7.0_80\jre, env.APPDATA=C:\Users\Administrator\AppData\Roaming, env.PUBLIC=C:\Users\Public, java.vm.info=mixed mode, env.OS=Windows_NT, os.version=6.3, env.=::=::\, env.CONFIG_SITE=C:/Program Files/Git/mingw64/etc/config.site, path.separator=;, env.ACLOCAL_PATH=C:\Program Files\Git\mingw64\share\aclocal;C:\Program Files\Git\usr\share\aclocal, env.MINGW_PACKAGE_PREFIX=mingw-w64-x86_64, java.vm.version=24.80-b11, user.variant=, env.USERPROFILE=C:\Users\Administrator, env.JAVA_HOME=C:/DataAnalytics/Platform/jdk1.7.0_80, java.awt.printerjob=sun.awt.windows.WPrinterJob, env.TERM=xterm, env.TMP=C:\Users\ADMINI~1\AppData\Local\Temp\1, env.PROGRAMFILES=C:\Program Files, sun.io.unicode.encoding=UnicodeLittle, awt.toolkit=sun.awt.windows.WToolkit, user.script=, env.MANPATH=C:\Program Files\Git\mingw64\share\man;C:\Program Files\Git\usr\local\man;C:\Program Files\Git\usr\share\man;C:\Program Files\Git\usr\man;C:\Program Files\Git\share\man, env.ORIGINAL_TMP=C:/Users/ADMINI~1/AppData/Local/Temp/1, user.home=C:\Users\Administrator, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, env.OLDPWD=C:/Users/Administrator/Desktop/Coinbase API/coinbase-java, env.SESSIONNAME=Console, java.specification.vendor=Oracle Corporation, library.jansi.path=C:\Users\Administrator\Desktop\Coinbase API\apache-maven-3.5.0-bin\apache-maven-3.5.0\lib\jansi-native\windows64, java.library.path=C:\DataAnalytics\Platform\jdk1.7.0_80\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Users\Administrator\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\local\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Users\Administrator\bin;C:\DataAnalytics\Platform\jdk1.7.0_80\bin;C:\gwdemo\release\DT92\Platform\apache-ant-1.8.2\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn;C:\Program Files\Microsoft SQL Server\120\Tools\Binn;C:\Program Files\Microsoft SQL Server\120\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn\ManagementStudio;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn;C:\DataAnalytics\GOSU\gosu-0.8.6.1-C\bin;C:\Program Files\Git\cmd;C:\Program Files\TortoiseGit\bin;C:\Program Files\nodejs;C:\Users\Administrator\AppData\Roaming\npm;C:\Program Files\Git\usr\bin\vendor_perl;C:\Program Files\Git\usr\bin\core_perl;., java.vendor.url=http://java.oracle.com/, env.NUMBER_OF_PROCESSORS=8, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.PSMODULEPATH=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\PowerShell\Modules\, env.MAVEN_CMD_LINE_ARGS= package -X, java.vm.vendor=Oracle Corporation, maven.home=C:\Users\Administrator\Desktop\Coinbase API\apache-maven-3.5.0-bin\apache-maven-3.5.0, java.runtime.name=Java(TM) SE Runtime Environment, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher package -X, java.class.path=C:/Users/Administrator/Desktop/Coinbase API/apache-maven-3.5.0-bin/apache-maven-3.5.0/boot/plexus-classworlds-2.5.2.jar, env.MSYSTEM_CARCH=x86_64, sonatypeOssDistMgmtSnapshotsUrl=https://oss.sonatype.org/content/repositories/snapshots/, env.PROGRAMW6432=C:\Program Files, maven.version=3.5.0, env.PROGRAMFILES(X86)=C:\Program Files (x86), java.vm.specification.name=Java Virtual Machine Specification, env.LOGONSERVER=\\2012R2STD, java.vm.specification.version=1.7, env.PROCESSOR_ARCHITECTURE=AMD64, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, sun.cpu.endian=little, sun.os.patch.level=, env.HOME=C:\Users\Administrator, env.ANT_HOME=C:\gwdemo\release\DT92\Platform\apache-ant-1.8.2, java.io.tmpdir=C:\Users\ADMINI~1\AppData\Local\Temp\1\, env.PROCESSOR_REVISION=2501, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, maven.multiModuleProjectDirectory=C:/Users/Administrator/Desktop/Coinbase API/coinbase-java, env.ORIGINAL_PATH=C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Users\Administrator\bin;C:\DataAnalytics\Platform\jdk1.7.0_80\bin;C:\gwdemo\release\DT92\Platform\apache-ant-1.8.2\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn;C:\Program Files\Microsoft SQL Server\120\Tools\Binn;C:\Program Files\Microsoft SQL Server\120\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn\ManagementStudio;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn;C:\DataAnalytics\GOSU\gosu-0.8.6.1-C\bin;C:\Program Files\Git\cmd;C:\Program Files\TortoiseGit\bin;C:\Program Files\nodejs;C:\Users\Administrator\AppData\Roaming\npm, env.PROGRAMDATA=C:\ProgramData, env.COMSPEC=C:\Windows\system32\cmd.exe, env.JAVA18_HOME=C:\gwdemo\release\DT92\Platform\jdk1.8.0_66, os.arch=amd64, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.PLINK_PROTOCOL=ssh, java.ext.dirs=C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\ext;C:\Windows\Sun\Java\lib\ext, env.MINGW_CHOST=x86_64-w64-mingw32, user.dir=C:\Users\Administrator\Desktop\Coinbase API\coinbase-java, env.LOCALAPPDATA=C:\Users\Administrator\AppData\Local, env.ORIGINAL_TEMP=C:/Users/ADMINI~1/AppData/Local/Temp/1, env.INFOPATH=C:\Program Files\Git\usr\local\info;C:\Program Files\Git\usr\share\info;C:\Program Files\Git\usr\info;C:\Program Files\Git\share\info, line.separator= , env.LC_ALL=C, java.vm.name=Java HotSpot(TM) 64-Bit Server VM, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, env.USERNAME=Administrator, file.encoding=Cp1252, env.MSYSTEM_PREFIX=C:/Program Files/Git/mingw64, env.PKG_CONFIG_PATH=C:\Program Files\Git\mingw64\lib\pkgconfig;C:\Program Files\Git\mingw64\share\pkgconfig, env.USERDOMAIN=2012R2STD, java.specification.version=1.7, env.MAVEN_PROJECTBASEDIR=C:/Users/Administrator/Desktop/Coinbase API/coinbase-java, env.SSH_ASKPASS=C:/Program Files/Git/mingw64/libexec/git-core/git-gui--askpass, env.PROCESSOR_LEVEL=6} [�[1;34mINFO�[m] Using 'UTF-8' encoding to copy filtered resources. [�[1;36mDEBUG�[m] resource with targetPath null directory C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\main\resources excludes [] includes [] [�[1;36mDEBUG�[m] ignoreDelta true [�[1;34mINFO�[m] Copying 4 resources [�[1;36mDEBUG�[m] file ca-coinbase.bks has a filtered file extension [�[1;36mDEBUG�[m] copy C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\main\resources\com\coinbase\api\ca-coinbase.bks to C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes\com\coinbase\api\ca-coinbase.bks [�[1;36mDEBUG�[m] file ca-coinbase.jks has a filtered file extension [�[1;36mDEBUG�[m] copy C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\main\resources\com\coinbase\api\ca-coinbase.jks to C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes\com\coinbase\api\ca-coinbase.jks [�[1;36mDEBUG�[m] file coinbase-callback.pub.der has a filtered file extension [�[1;36mDEBUG�[m] copy C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\main\resources\com\coinbase\api\coinbase-callback.pub.der to C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes\com\coinbase\api\coinbase-callback.pub.der [�[1;36mDEBUG�[m] file MoneyDataExtension.csv has a filtered file extension [�[1;36mDEBUG�[m] copy C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\main\resources\org\joda\money\MoneyDataExtension.csv to C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes\org\joda\money\MoneyDataExtension.csv [�[1;36mDEBUG�[m] no use filter components [�[1;34mINFO�[m] [�[1;34mINFO�[m] �[1m--- �[0;32mmaven-compiler-plugin:3.1:compile�[m �[1m(default-compile)�[m @ �[36mcoinbase-java�[0;1m ---�[m [�[1;36mDEBUG�[m] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=160, ConflictIdSorter.graphTime=1, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=43, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=3, ConflictResolver.conflictItemCount=63, DefaultDependencyCollector.collectTime=158, DefaultDependencyCollector.transformTime=5} [�[1;36mDEBUG�[m] org.apache.maven.plugins:maven-compiler-plugin:jar:3.1: [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-api:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-artifact:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-utils:jar:1.5.1:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-core:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-settings:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-profile:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-model:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-repository-metadata:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-error-diagnostics:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-project:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-registry:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-descriptor:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-artifact-manager:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-monitor:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-toolchain:jar:1.0:compile [�[1;36mDEBUG�[m] org.apache.maven.shared:maven-shared-utils:jar:0.1:compile [�[1;36mDEBUG�[m] com.google.code.findbugs:jsr305:jar:2.0.1:compile [�[1;36mDEBUG�[m] org.apache.maven.shared:maven-shared-incremental:jar:1.1:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-compiler-api:jar:2.2:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-compiler-manager:jar:2.2:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-compiler-javac:jar:2.2:runtime [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-container-default:jar:1.5.5:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-classworlds:jar:2.2.2:compile [�[1;36mDEBUG�[m] org.apache.xbean:xbean-reflect:jar:3.4:compile [�[1;36mDEBUG�[m] log4j:log4j:jar:1.2.12:compile [�[1;36mDEBUG�[m] commons-logging:commons-logging-api:jar:1.1:compile [�[1;36mDEBUG�[m] com.google.collections:google-collections:jar:1.0:compile [�[1;36mDEBUG�[m] junit:junit:jar:3.8.2:compile [�[1;36mDEBUG�[m] Created new class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.1 [�[1;36mDEBUG�[m] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.1 [�[1;36mDEBUG�[m] Imported: < maven.api [�[1;36mDEBUG�[m] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.1 [�[1;36mDEBUG�[m] Included: org.apache.maven.plugins:maven-compiler-plugin:jar:3.1 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-utils:jar:1.5.1 [�[1;36mDEBUG�[m] Included: org.apache.maven.shared:maven-shared-utils:jar:0.1 [�[1;36mDEBUG�[m] Included: com.google.code.findbugs:jsr305:jar:2.0.1 [�[1;36mDEBUG�[m] Included: org.apache.maven.shared:maven-shared-incremental:jar:1.1 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-compiler-api:jar:2.2 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-compiler-manager:jar:2.2 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-compiler-javac:jar:2.2 [�[1;36mDEBUG�[m] Included: org.apache.xbean:xbean-reflect:jar:3.4 [�[1;36mDEBUG�[m] Included: log4j:log4j:jar:1.2.12 [�[1;36mDEBUG�[m] Included: commons-logging:commons-logging-api:jar:1.1 [�[1;36mDEBUG�[m] Included: com.google.collections:google-collections:jar:1.0 [�[1;36mDEBUG�[m] Included: junit:junit:jar:3.8.2 [�[1;36mDEBUG�[m] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.1:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.1, parent: sun.misc.Launcher$AppClassLoader@30a4effe] [�[1;36mDEBUG�[m] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.1:compile' with basic configurator --> [�[1;36mDEBUG�[m] (f) basedir = C:\Users\Administrator\Desktop\Coinbase API\coinbase-java [�[1;36mDEBUG�[m] (f) buildDirectory = C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target [�[1;36mDEBUG�[m] (f) classpathElements = [C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes, C:\Users\Administrator\.m2\repository\joda-time\joda-time\2.3\joda-time-2.3.jar, C:\Users\Administrator\.m2\repository\net\sf\opencsv\opencsv\2.0\opencsv-2.0.jar, C:\Users\Administrator\.m2\repository\org\joda\joda-money\0.9.1\joda-money-0.9.1.jar, C:\Users\Administrator\.m2\repository\com\fasterxml\jackson\datatype\jackson-datatype-joda\2.4.0\jackson-datatype-joda-2.4.0.jar, C:\Users\Administrator\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.4.0\jackson-annotations-2.4.0.jar, C:\Users\Administrator\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.4.0\jackson-core-2.4.0.jar, C:\Users\Administrator\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.4.0\jackson-databind-2.4.0.jar, C:\Users\Administrator\.m2\repository\commons-codec\commons-codec\1.9\commons-codec-1.9.jar, C:\Users\Administrator\.m2\repository\commons-io\commons-io\2.4\commons-io-2.4.jar, C:\Users\Administrator\.m2\repository\org\apache\httpcomponents\httpclient\4.3.6\httpclient-4.3.6.jar, C:\Users\Administrator\.m2\repository\org\apache\httpcomponents\httpcore\4.3.3\httpcore-4.3.3.jar, C:\Users\Administrator\.m2\repository\commons-logging\commons-logging\1.1.3\commons-logging-1.1.3.jar] [�[1;36mDEBUG�[m] (f) compileSourceRoots = [C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\main\java] [�[1;36mDEBUG�[m] (f) compilerId = javac [�[1;36mDEBUG�[m] (f) debug = true [�[1;36mDEBUG�[m] (f) encoding = UTF-8 [�[1;36mDEBUG�[m] (f) failOnError = true [�[1;36mDEBUG�[m] (f) forceJavacCompilerUse = false [�[1;36mDEBUG�[m] (f) fork = true [�[1;36mDEBUG�[m] (f) generatedSourcesDirectory = C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\generated-sources\annotations [�[1;36mDEBUG�[m] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.1:compile {execution: default-compile} [�[1;36mDEBUG�[m] (f) optimize = false [�[1;36mDEBUG�[m] (f) outputDirectory = C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes [�[1;36mDEBUG�[m] (f) projectArtifact = com.coinbase.api:coinbase-java:jar:1.11.0-SNAPSHOT [�[1;36mDEBUG�[m] (f) showDeprecation = true [�[1;36mDEBUG�[m] (f) showWarnings = true [�[1;36mDEBUG�[m] (f) skipMultiThreadWarning = false [�[1;36mDEBUG�[m] (f) source = 1.6 [�[1;36mDEBUG�[m] (f) staleMillis = 0 [�[1;36mDEBUG�[m] (f) target = 1.6 [�[1;36mDEBUG�[m] (f) useIncrementalCompilation = true [�[1;36mDEBUG�[m] (f) verbose = false [�[1;36mDEBUG�[m] (f) mavenSession = org.apache.maven.execution.MavenSession@1f865b82 [�[1;36mDEBUG�[m] (f) session = org.apache.maven.execution.MavenSession@1f865b82 [�[1;36mDEBUG�[m] -- end configuration -- [�[1;36mDEBUG�[m] Using compiler 'javac'. [�[1;36mDEBUG�[m] Source directories: [C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\main\java] [�[1;36mDEBUG�[m] Classpath: [C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes C:\Users\Administrator\.m2\repository\joda-time\joda-time\2.3\joda-time-2.3.jar C:\Users\Administrator\.m2\repository\net\sf\opencsv\opencsv\2.0\opencsv-2.0.jar C:\Users\Administrator\.m2\repository\org\joda\joda-money\0.9.1\joda-money-0.9.1.jar C:\Users\Administrator\.m2\repository\com\fasterxml\jackson\datatype\jackson-datatype-joda\2.4.0\jackson-datatype-joda-2.4.0.jar C:\Users\Administrator\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.4.0\jackson-annotations-2.4.0.jar C:\Users\Administrator\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.4.0\jackson-core-2.4.0.jar C:\Users\Administrator\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.4.0\jackson-databind-2.4.0.jar C:\Users\Administrator\.m2\repository\commons-codec\commons-codec\1.9\commons-codec-1.9.jar C:\Users\Administrator\.m2\repository\commons-io\commons-io\2.4\commons-io-2.4.jar C:\Users\Administrator\.m2\repository\org\apache\httpcomponents\httpclient\4.3.6\httpclient-4.3.6.jar C:\Users\Administrator\.m2\repository\org\apache\httpcomponents\httpcore\4.3.3\httpcore-4.3.3.jar C:\Users\Administrator\.m2\repository\commons-logging\commons-logging\1.1.3\commons-logging-1.1.3.jar] [�[1;36mDEBUG�[m] Output directory: C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes [�[1;36mDEBUG�[m] CompilerReuseStrategy: reuseCreated [�[1;36mDEBUG�[m] useIncrementalCompilation enabled [�[1;34mINFO�[m] Nothing to compile - all classes are up to date [�[1;34mINFO�[m] [�[1;34mINFO�[m] �[1m--- �[0;32mmaven-resources-plugin:2.6:testResources�[m �[1m(default-testResources)�[m @ �[36mcoinbase-java�[0;1m ---�[m [�[1;36mDEBUG�[m] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: sun.misc.Launcher$AppClassLoader@30a4effe] [�[1;36mDEBUG�[m] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:testResources' with basic configurator --> [�[1;36mDEBUG�[m] (f) buildFilters = [] [�[1;36mDEBUG�[m] (f) encoding = UTF-8 [�[1;36mDEBUG�[m] (f) escapeWindowsPaths = true [�[1;36mDEBUG�[m] (s) includeEmptyDirs = false [�[1;36mDEBUG�[m] (s) outputDirectory = C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\test-classes [�[1;36mDEBUG�[m] (s) overwrite = false [�[1;36mDEBUG�[m] (f) project = MavenProject: com.coinbase.api:coinbase-java:1.11.0-SNAPSHOT @ C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\pom.xml [�[1;36mDEBUG�[m] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\test\resources, PatternSet [includes: {}, excludes: {}]}}] [�[1;36mDEBUG�[m] (f) session = org.apache.maven.execution.MavenSession@1f865b82 [�[1;36mDEBUG�[m] (f) supportMultiLineFiltering = false [�[1;36mDEBUG�[m] (f) useBuildFilters = true [�[1;36mDEBUG�[m] (s) useDefaultDelimiters = true [�[1;36mDEBUG�[m] -- end configuration -- [�[1;36mDEBUG�[m] properties used {java.vendor=Oracle Corporation, env.SYSTEMROOT=C:\Windows, env.USERDOMAIN_ROAMINGPROFILE=2012R2STD, sun.java.launcher=SUN_STANDARD, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.name=Windows Server 2012 R2, env.FP_NO_HOST_CHECK=NO, sun.boot.class.path=C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\resources.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\rt.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\sunrsasign.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\jsse.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\jce.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\charsets.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\jfr.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\classes, env.TMPDIR=C:\Users\ADMINI~1\AppData\Local\Temp\1, env.COMPUTERNAME=2012R2STD, env.PWD=C:/Users/Administrator/Desktop/Coinbase API/coinbase-java, env.ALLUSERSPROFILE=C:\ProgramData, sun.desktop=windows, java.vm.specification.vendor=Oracle Corporation, java.runtime.version=1.7.0_80-b15, env.HOMEPATH=\Users\Administrator, project.build.sourceEncoding=UTF-8, env.DISPLAY=needs-to-be-defined, user.name=Administrator, maven.build.version=Apache Maven 3.5.0 (ff8f5e7444045639af65f6095c62210b5713f426; 2017-04-03T12:39:06-07:00), env.SHELL=C:\Program Files\Git\usr\bin\bash, env.MSYSTEM=MINGW64, env.PATH=C:\Users\Administrator\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\local\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Users\Administrator\bin;C:\DataAnalytics\Platform\jdk1.7.0_80\bin;C:\gwdemo\release\DT92\Platform\apache-ant-1.8.2\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn;C:\Program Files\Microsoft SQL Server\120\Tools\Binn;C:\Program Files\Microsoft SQL Server\120\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn\ManagementStudio;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn;C:\DataAnalytics\GOSU\gosu-0.8.6.1-C\bin;C:\Program Files\Git\cmd;C:\Program Files\TortoiseGit\bin;C:\Program Files\nodejs;C:\Users\Administrator\AppData\Roaming\npm;C:\Program Files\Git\usr\bin\vendor_perl;C:\Program Files\Git\usr\bin\core_perl, user.language=en, env.EXEPATH=C:\Program Files\Git, env.WINDIR=C:\Windows, sun.boot.library.path=C:\DataAnalytics\Platform\jdk1.7.0_80\jre\bin, classworlds.conf=C:/Users/Administrator/Desktop/Coinbase API/apache-maven-3.5.0-bin/apache-mav

Here is the -X option for full debug information.


�[1mApache Maven 3.5.0 (ff8f5e7444045639af65f6095c62210b5713f426; 2017-04-03T12:39:06-07:00)�[m
Maven home: C:\Users\Administrator\Desktop\Coinbase API\apache-maven-3.5.0-bin\apache-maven-3.5.0
Java version: 1.7.0_80, vendor: Oracle Corporation
Java home: C:\DataAnalytics\Platform\jdk1.7.0_80\jre
Default locale: en_US, platform encoding: Cp1252
OS name: "windows server 2012 r2", version: "6.3", arch: "amd64", family: "windows"
[�[1;36mDEBUG�[m] Created new class realm maven.api
[�[1;36mDEBUG�[m] Importing foreign packages into class realm maven.api
[�[1;36mDEBUG�[m] Imported: javax.enterprise.inject.* < plexus.core
[�[1;36mDEBUG�[m] Imported: javax.enterprise.util.* < plexus.core
[�[1;36mDEBUG�[m] Imported: javax.inject.* < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.* < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.artifact < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.classrealm < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.cli < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.configuration < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.exception < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.execution < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.execution.scope < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.lifecycle < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.model < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.monitor < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.plugin < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.profiles < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.project < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.reporting < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.repository < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.rtinfo < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.settings < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.toolchain < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.usability < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.wagon.* < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.wagon.authentication < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.wagon.authorization < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.wagon.events < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.wagon.observers < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.wagon.proxy < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.wagon.repository < plexus.core
[�[1;36mDEBUG�[m] Imported: org.apache.maven.wagon.resource < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.classworlds < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.* < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.classworlds < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.component < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.configuration < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.container < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.context < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.lifecycle < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.logging < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.personality < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core
[�[1;36mDEBUG�[m] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.* < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.artifact < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.collection < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.deployment < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.graph < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.impl < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.installation < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.internal.impl < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.metadata < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.repository < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.resolution < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.spi < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.transfer < plexus.core
[�[1;36mDEBUG�[m] Imported: org.eclipse.aether.version < plexus.core
[�[1;36mDEBUG�[m] Imported: org.fusesource.jansi.* < plexus.core
[�[1;36mDEBUG�[m] Imported: org.slf4j.* < plexus.core
[�[1;36mDEBUG�[m] Imported: org.slf4j.helpers.* < plexus.core
[�[1;36mDEBUG�[m] Imported: org.slf4j.spi.* < plexus.core
[�[1;36mDEBUG�[m] Populating class realm maven.api
[�[1;34mINFO�[m] Error stacktraces are turned on.
[�[1;36mDEBUG�[m] Message scheme: color
[�[1;36mDEBUG�[m] Message styles: �[1;36mdebug�[m �[1;34minfo�[m �[1;33mwarning�[m �[1;31merror�[m �[1;32msuccess�[m �[1;31mfailure�[m �[1mstrong�[m �[32mmojo�[m �[36mproject�[m
[�[1;36mDEBUG�[m] Reading global settings from C:\Users\Administrator\Desktop\Coinbase API\apache-maven-3.5.0-bin\apache-maven-3.5.0\conf\settings.xml
[�[1;36mDEBUG�[m] Reading user settings from C:\Users\Administrator.m2\settings.xml
[�[1;36mDEBUG�[m] Reading global toolchains from C:\Users\Administrator\Desktop\Coinbase API\apache-maven-3.5.0-bin\apache-maven-3.5.0\conf\toolchains.xml
[�[1;36mDEBUG�[m] Reading user toolchains from C:\Users\Administrator.m2\toolchains.xml
[�[1;36mDEBUG�[m] Using local repository at C:\Users\Administrator.m2\repository
[�[1;36mDEBUG�[m] Using manager EnhancedLocalRepositoryManager with priority 10.0 for C:\Users\Administrator.m2\repository
[�[1;34mINFO�[m] Scanning for projects...
[�[1;36mDEBUG�[m] Extension realms for project com.coinbase.api:coinbase-java:jar:1.11.0-SNAPSHOT: (none)
[�[1;36mDEBUG�[m] Looking up lifecycle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[�[1;36mDEBUG�[m] Extension realms for project org.sonatype.oss:oss-parent:pom:7: (none)
[�[1;36mDEBUG�[m] Looking up lifecycle mappings for packaging pom from ClassRealm[plexus.core, parent: null]
[�[1;36mDEBUG�[m] === REACTOR BUILD PLAN ================================================
[�[1;36mDEBUG�[m] Project: com.coinbase.api:coinbase-java:jar:1.11.0-SNAPSHOT
[�[1;36mDEBUG�[m] Tasks: [package]
[�[1;36mDEBUG�[m] Style: Regular
[�[1;36mDEBUG�[m] =======================================================================
[�[1;34mINFO�[m]
[�[1;34mINFO�[m] �[1m------------------------------------------------------------------------�[m
[�[1;34mINFO�[m] �[1mBuilding coinbase-java 1.11.0-SNAPSHOT�[m
[�[1;34mINFO�[m] �[1m------------------------------------------------------------------------�[m
[�[1;36mDEBUG�[m] Could not find metadata org.apache.maven.plugins:maven-source-plugin/maven-metadata.xml in local (C:\Users\Administrator.m2\repository)
[�[1;36mDEBUG�[m] Skipped remote request for org.apache.maven.plugins:maven-source-plugin/maven-metadata.xml, locally cached metadata up-to-date.
[�[1;36mDEBUG�[m] Resolved plugin version for org.apache.maven.plugins:maven-source-plugin to 3.0.1 from repository central (https://repo.maven.apache.org/maven2, default, releases)
[�[1;36mDEBUG�[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[�[1;36mDEBUG�[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[�[1;36mDEBUG�[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[�[1;36mDEBUG�[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[�[1;36mDEBUG�[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[�[1;36mDEBUG�[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[�[1;36mDEBUG�[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[�[1;36mDEBUG�[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[�[1;36mDEBUG�[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[�[1;36mDEBUG�[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[�[1;36mDEBUG�[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[�[1;36mDEBUG�[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[�[1;36mDEBUG�[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[�[1;36mDEBUG�[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[�[1;36mDEBUG�[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[�[1;36mDEBUG�[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[�[1;36mDEBUG�[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[�[1;36mDEBUG�[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[�[1;36mDEBUG�[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[�[1;36mDEBUG�[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[�[1;36mDEBUG�[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[�[1;36mDEBUG�[m] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[�[1;36mDEBUG�[m] Lifecycle clean -> [pre-clean, clean, post-clean]
[�[1;36mDEBUG�[m] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[�[1;36mDEBUG�[m] === PROJECT BUILD PLAN ================================================
[�[1;36mDEBUG�[m] Project: com.coinbase.api:coinbase-java:1.11.0-SNAPSHOT
[�[1;36mDEBUG�[m] Dependencies (collect): []
[�[1;36mDEBUG�[m] Dependencies (resolve): [compile, runtime, test]
[�[1;36mDEBUG�[m] Repositories (dependencies): [sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots, default, snapshots), central (https://repo.maven.apache.org/maven2, default, releases)]
[�[1;36mDEBUG�[m] Repositories (plugins) : [central (https://repo.maven.apache.org/maven2, default, releases)]
[�[1;36mDEBUG�[m] -----------------------------------------------------------------------
[�[1;36mDEBUG�[m] Goal: org.apache.maven.plugins:maven-enforcer-plugin:1.0:enforce (enforce-maven)
[�[1;36mDEBUG�[m] Style: Regular
[�[1;36mDEBUG�[m] Configuration:

${enforcer.fail}
${enforcer.failFast}
${enforcer.ignoreCache}
${project}


(,2.1.0),(2.1.0,2.2.0),(2.2.0,)
Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively.


${session}
${enforcer.skip}

[�[1;36mDEBUG�[m] -----------------------------------------------------------------------
[�[1;36mDEBUG�[m] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:resources (default-resources)
[�[1;36mDEBUG�[m] Style: Regular
[�[1;36mDEBUG�[m] Configuration:


${encoding}
${maven.resources.escapeString}
${maven.resources.escapeWindowsPaths}
${maven.resources.includeEmptyDirs}

${maven.resources.overwrite}



${maven.resources.supportMultiLineFiltering}



[�[1;36mDEBUG�[m] -----------------------------------------------------------------------
[�[1;36mDEBUG�[m] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile)
[�[1;36mDEBUG�[m] Style: Regular
[�[1;36mDEBUG�[m] Configuration:





${maven.compiler.compilerId}
${maven.compiler.compilerReuseStrategy}
${maven.compiler.compilerVersion}
${maven.compiler.debug}
${maven.compiler.debuglevel}
${encoding}
${maven.compiler.executable}
${maven.compiler.failOnError}
${maven.compiler.forceJavacCompilerUse}
true

${maven.compiler.maxmem}
${maven.compiler.meminitial}
${mojoExecution}
${maven.compiler.optimize}


true
true
${maven.main.skip}
${maven.compiler.skipMultiThreadWarning}

1.6 ${lastModGranularityMs} 1.6 ${maven.compiler.useIncrementalCompilation} ${maven.compiler.verbose} [�[1;36mDEBUG�[m] ----------------------------------------------------------------------- [�[1;36mDEBUG�[m] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:testResources (default-testResources) [�[1;36mDEBUG�[m] Style: Regular [�[1;36mDEBUG�[m] Configuration: ${encoding} ${maven.resources.escapeString} ${maven.resources.escapeWindowsPaths} ${maven.resources.includeEmptyDirs} ${maven.resources.overwrite} ${maven.test.skip} ${maven.resources.supportMultiLineFiltering} [�[1;36mDEBUG�[m] ----------------------------------------------------------------------- [�[1;36mDEBUG�[m] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.1:testCompile (default-testCompile) [�[1;36mDEBUG�[m] Style: Regular [�[1;36mDEBUG�[m] Configuration: ${maven.compiler.compilerId} ${maven.compiler.compilerReuseStrategy} ${maven.compiler.compilerVersion} ${maven.compiler.debug} ${maven.compiler.debuglevel} ${encoding} ${maven.compiler.executable} ${maven.compiler.failOnError} ${maven.compiler.forceJavacCompilerUse} true ${maven.compiler.maxmem} ${maven.compiler.meminitial} ${mojoExecution} ${maven.compiler.optimize} true true ${maven.test.skip} ${maven.compiler.skipMultiThreadWarning} 1.6 ${lastModGranularityMs} 1.6 ${maven.compiler.testSource} ${maven.compiler.testTarget} ${maven.compiler.useIncrementalCompilation} ${maven.compiler.verbose} [�[1;36mDEBUG�[m] ----------------------------------------------------------------------- [�[1;36mDEBUG�[m] Goal: org.apache.maven.plugins:maven-surefire-plugin:2.17:test (default-test) [�[1;36mDEBUG�[m] Style: Regular [�[1;36mDEBUG�[m] Configuration: ${maven.test.additionalClasspath} ${argLine} ${childDelegation} ${maven.test.dependency.excludes} ${maven.surefire.debug} ${dependenciesToScan} ${disableXmlReport} ${enableAssertions} ${excludedGroups} ${surefire.failIfNoSpecifiedTests} ${failIfNoTests} ${forkCount} ${forkMode} ${surefire.timeout} ${groups} ${junitArtifactName} /usr/bin/java ${objectFactory} ${parallel} ${parallelOptimized} ${surefire.parallel.forcedTimeout} ${surefire.parallel.timeout} ${perCoreThreadCount} ${plugin.artifactMap} ${surefire.printSummary} ${project.artifactMap} ${maven.test.redirectTestOutputToFile} ${surefire.reportFormat} ${surefire.reportNameSuffix} ${reuseForks} ${maven.test.skip} ${maven.test.skip.exec} ${skipTests} ${test} ${maven.test.failure.ignore} ${testNGArtifactName} ${threadCount} ${threadCountClasses} ${threadCountMethods} ${threadCountSuites} ${trimStackTrace} ${surefire.useFile} ${surefire.useManifestOnlyJar} ${surefire.useSystemClassLoader} ${useUnlimitedThreads} ${basedir} [�[1;36mDEBUG�[m] ----------------------------------------------------------------------- [�[1;36mDEBUG�[m] Goal: org.apache.maven.plugins:maven-jar-plugin:2.4:jar (default-jar) [�[1;36mDEBUG�[m] Style: Regular [�[1;36mDEBUG�[m] Configuration: ${jar.finalName} ${jar.forceCreation} ${jar.skipIfEmpty} ${jar.useDefaultManifestFile} [�[1;36mDEBUG�[m] ======================================================================= [�[1;36mDEBUG�[m] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=34, ConflictIdSorter.graphTime=1, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=23, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=5, ConflictResolver.conflictItemCount=33, DefaultDependencyCollector.collectTime=192, DefaultDependencyCollector.transformTime=9} [�[1;36mDEBUG�[m] com.coinbase.api:coinbase-java:jar:1.11.0-SNAPSHOT [�[1;36mDEBUG�[m] joda-time:joda-time:jar:2.3:compile [�[1;36mDEBUG�[m] net.sf.opencsv:opencsv:jar:2.0:compile [�[1;36mDEBUG�[m] org.joda:joda-money:jar:0.9.1:compile [�[1;36mDEBUG�[m] com.fasterxml.jackson.datatype:jackson-datatype-joda:jar:2.4.0:compile [�[1;36mDEBUG�[m] com.fasterxml.jackson.core:jackson-annotations:jar:2.4.0:compile [�[1;36mDEBUG�[m] com.fasterxml.jackson.core:jackson-core:jar:2.4.0:compile [�[1;36mDEBUG�[m] com.fasterxml.jackson.core:jackson-databind:jar:2.4.0:compile [�[1;36mDEBUG�[m] org.powermock:powermock-module-junit4:jar:1.5.5:test [�[1;36mDEBUG�[m] org.powermock:powermock-module-junit4-common:jar:1.5.5:test [�[1;36mDEBUG�[m] org.powermock:powermock-core:jar:1.5.5:test [�[1;36mDEBUG�[m] org.javassist:javassist:jar:3.18.2-GA:test [�[1;36mDEBUG�[m] org.powermock:powermock-reflect:jar:1.5.5:test [�[1;36mDEBUG�[m] org.objenesis:objenesis:jar:2.1:test [�[1;36mDEBUG�[m] org.powermock:powermock-api-mockito:jar:1.5.5:test [�[1;36mDEBUG�[m] org.mockito:mockito-all:jar:1.9.5:test [�[1;36mDEBUG�[m] org.powermock:powermock-api-support:jar:1.5.5:test [�[1;36mDEBUG�[m] junit:junit:jar:4.11:test [�[1;36mDEBUG�[m] org.hamcrest:hamcrest-core:jar:1.3:test [�[1;36mDEBUG�[m] commons-codec:commons-codec:jar:1.9:compile [�[1;36mDEBUG�[m] commons-io:commons-io:jar:2.4:compile [�[1;36mDEBUG�[m] org.apache.httpcomponents:httpclient:jar:4.3.6:compile [�[1;36mDEBUG�[m] org.apache.httpcomponents:httpcore:jar:4.3.3:compile [�[1;36mDEBUG�[m] commons-logging:commons-logging:jar:1.1.3:compile [�[1;34mINFO�[m] [�[1;34mINFO�[m] �[1m--- �[0;32mmaven-enforcer-plugin:1.0:enforce�[m �[1m(enforce-maven)�[m @ �[36mcoinbase-java�[0;1m ---�[m [�[1;36mDEBUG�[m] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=1, ConflictMarker.nodeCount=100, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=32, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=3, ConflictResolver.conflictItemCount=90, DefaultDependencyCollector.collectTime=141, DefaultDependencyCollector.transformTime=4} [�[1;36mDEBUG�[m] org.apache.maven.plugins:maven-enforcer-plugin:jar:1.0: [�[1;36mDEBUG�[m] org.apache.maven:maven-artifact:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-api:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-project:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-settings:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-profile:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-model:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-artifact-manager:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-registry:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [�[1;36mDEBUG�[m] junit:junit:jar:3.8.2:test [�[1;36mDEBUG�[m] org.apache.maven:maven-core:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven.reporting:maven-reporting-api:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-10:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-repository-metadata:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-error-diagnostics:jar:2.0.9:compile [�[1;36mDEBUG�[m] commons-cli:commons-cli:jar:1.0:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-descriptor:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-monitor:jar:2.0.9:compile [�[1;36mDEBUG�[m] classworlds:classworlds:jar:1.1:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-utils:jar:1.5.8:compile [�[1;36mDEBUG�[m] commons-lang:commons-lang:jar:2.3:compile [�[1;36mDEBUG�[m] org.apache.maven.enforcer:enforcer-api:jar:1.0:compile [�[1;36mDEBUG�[m] org.apache.maven.enforcer:enforcer-rules:jar:1.0:compile [�[1;36mDEBUG�[m] org.apache.maven.shared:maven-common-artifact-filters:jar:1.2:compile [�[1;36mDEBUG�[m] org.apache.maven.shared:maven-plugin-testing-harness:jar:1.1:test [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-archiver:jar:1.0-alpha-7:test [�[1;36mDEBUG�[m] org.beanshell:bsh:jar:2.0b4:compile [�[1;36mDEBUG�[m] org.apache.maven.shared:maven-dependency-tree:jar:1.2:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-i18n:jar:1.0-beta-6:compile [�[1;36mDEBUG�[m] Created new class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0 [�[1;36mDEBUG�[m] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0 [�[1;36mDEBUG�[m] Imported: < maven.api [�[1;36mDEBUG�[m] Populating class realm plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0 [�[1;36mDEBUG�[m] Included: org.apache.maven.plugins:maven-enforcer-plugin:jar:1.0 [�[1;36mDEBUG�[m] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.9 [�[1;36mDEBUG�[m] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-10 [�[1;36mDEBUG�[m] Included: commons-cli:commons-cli:jar:1.0 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-utils:jar:1.5.8 [�[1;36mDEBUG�[m] Included: commons-lang:commons-lang:jar:2.3 [�[1;36mDEBUG�[m] Included: org.apache.maven.enforcer:enforcer-api:jar:1.0 [�[1;36mDEBUG�[m] Included: org.apache.maven.enforcer:enforcer-rules:jar:1.0 [�[1;36mDEBUG�[m] Included: org.apache.maven.shared:maven-common-artifact-filters:jar:1.2 [�[1;36mDEBUG�[m] Included: org.beanshell:bsh:jar:2.0b4 [�[1;36mDEBUG�[m] Included: org.apache.maven.shared:maven-dependency-tree:jar:1.2 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-i18n:jar:1.0-beta-6 [�[1;36mDEBUG�[m] Configuring mojo org.apache.maven.plugins:maven-enforcer-plugin:1.0:enforce from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-enforcer-plugin:1.0, parent: sun.misc.Launcher$AppClassLoader@30a4effe] [�[1;36mDEBUG�[m] Configuring mojo 'org.apache.maven.plugins:maven-enforcer-plugin:1.0:enforce' with basic configurator --> [�[1;36mDEBUG�[m] (s) fail = true [�[1;36mDEBUG�[m] (s) failFast = false [�[1;36mDEBUG�[m] (f) ignoreCache = false [�[1;36mDEBUG�[m] (s) project = MavenProject: com.coinbase.api:coinbase-java:1.11.0-SNAPSHOT @ C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\pom.xml [�[1;36mDEBUG�[m] (s) version = (,2.1.0),(2.1.0,2.2.0),(2.2.0,) [�[1;36mDEBUG�[m] (f) message = Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively. [�[1;36mDEBUG�[m] (s) rules = [org.apache.maven.plugins.enforcer.RequireMavenVersion@7f81c084] [�[1;36mDEBUG�[m] (s) session = org.apache.maven.execution.MavenSession@1f865b82 [�[1;36mDEBUG�[m] (s) skip = false [�[1;36mDEBUG�[m] -- end configuration -- [�[1;36mDEBUG�[m] Executing rule: org.apache.maven.plugins.enforcer.RequireMavenVersion [�[1;36mDEBUG�[m] Rule org.apache.maven.plugins.enforcer.RequireMavenVersion is cacheable. [�[1;36mDEBUG�[m] Detected Maven Version: 3.5.0 [�[1;36mDEBUG�[m] Detected Maven Version: 3.5.0 is allowed in the range (,2.1.0),(2.1.0,2.2.0),(2.2.0,). [�[1;34mINFO�[m] [�[1;34mINFO�[m] �[1m--- �[0;32mmaven-resources-plugin:2.6:resources�[m �[1m(default-resources)�[m @ �[36mcoinbase-java�[0;1m ---�[m [�[1;36mDEBUG�[m] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=77, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=26, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=74, DefaultDependencyCollector.collectTime=86, DefaultDependencyCollector.transformTime=1} [�[1;36mDEBUG�[m] org.apache.maven.plugins:maven-resources-plugin:jar:2.6: [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-api:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-project:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-profile:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-artifact-manager:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-registry:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-core:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-repository-metadata:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile [�[1;36mDEBUG�[m] commons-cli:commons-cli:jar:1.0:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile [�[1;36mDEBUG�[m] classworlds:classworlds:jar:1.1:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-artifact:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-settings:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-model:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-monitor:jar:2.0.6:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [�[1;36mDEBUG�[m] junit:junit:jar:3.8.1:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-utils:jar:2.0.5:compile [�[1;36mDEBUG�[m] org.apache.maven.shared:maven-filtering:jar:1.1:compile [�[1;36mDEBUG�[m] org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-interpolation:jar:1.13:compile [�[1;36mDEBUG�[m] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6 [�[1;36mDEBUG�[m] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6 [�[1;36mDEBUG�[m] Imported: < maven.api [�[1;36mDEBUG�[m] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.6 [�[1;36mDEBUG�[m] Included: org.apache.maven.plugins:maven-resources-plugin:jar:2.6 [�[1;36mDEBUG�[m] Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.6 [�[1;36mDEBUG�[m] Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7 [�[1;36mDEBUG�[m] Included: commons-cli:commons-cli:jar:1.0 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4 [�[1;36mDEBUG�[m] Included: junit:junit:jar:3.8.1 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-utils:jar:2.0.5 [�[1;36mDEBUG�[m] Included: org.apache.maven.shared:maven-filtering:jar:1.1 [�[1;36mDEBUG�[m] Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-interpolation:jar:1.13 [�[1;36mDEBUG�[m] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: sun.misc.Launcher$AppClassLoader@30a4effe] [�[1;36mDEBUG�[m] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:resources' with basic configurator --> [�[1;36mDEBUG�[m] (f) buildFilters = [] [�[1;36mDEBUG�[m] (f) encoding = UTF-8 [�[1;36mDEBUG�[m] (f) escapeWindowsPaths = true [�[1;36mDEBUG�[m] (s) includeEmptyDirs = false [�[1;36mDEBUG�[m] (s) outputDirectory = C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes [�[1;36mDEBUG�[m] (s) overwrite = false [�[1;36mDEBUG�[m] (f) project = MavenProject: com.coinbase.api:coinbase-java:1.11.0-SNAPSHOT @ C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\pom.xml [�[1;36mDEBUG�[m] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\main\resources, PatternSet [includes: {}, excludes: {}]}}] [�[1;36mDEBUG�[m] (f) session = org.apache.maven.execution.MavenSession@1f865b82 [�[1;36mDEBUG�[m] (f) supportMultiLineFiltering = false [�[1;36mDEBUG�[m] (f) useBuildFilters = true [�[1;36mDEBUG�[m] (s) useDefaultDelimiters = true [�[1;36mDEBUG�[m] -- end configuration -- [�[1;36mDEBUG�[m] properties used {java.vendor=Oracle Corporation, env.SYSTEMROOT=C:\Windows, env.USERDOMAIN_ROAMINGPROFILE=2012R2STD, sun.java.launcher=SUN_STANDARD, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.name=Windows Server 2012 R2, env.FP_NO_HOST_CHECK=NO, sun.boot.class.path=C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\resources.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\rt.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\sunrsasign.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\jsse.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\jce.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\charsets.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\jfr.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\classes, env.TMPDIR=C:\Users\ADMINI~1\AppData\Local\Temp\1, env.COMPUTERNAME=2012R2STD, env.PWD=C:/Users/Administrator/Desktop/Coinbase API/coinbase-java, env.ALLUSERSPROFILE=C:\ProgramData, sun.desktop=windows, java.vm.specification.vendor=Oracle Corporation, java.runtime.version=1.7.0_80-b15, env.HOMEPATH=\Users\Administrator, project.build.sourceEncoding=UTF-8, env.DISPLAY=needs-to-be-defined, user.name=Administrator, maven.build.version=Apache Maven 3.5.0 (ff8f5e7444045639af65f6095c62210b5713f426; 2017-04-03T12:39:06-07:00), env.SHELL=C:\Program Files\Git\usr\bin\bash, env.MSYSTEM=MINGW64, env.PATH=C:\Users\Administrator\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\local\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Users\Administrator\bin;C:\DataAnalytics\Platform\jdk1.7.0_80\bin;C:\gwdemo\release\DT92\Platform\apache-ant-1.8.2\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn;C:\Program Files\Microsoft SQL Server\120\Tools\Binn;C:\Program Files\Microsoft SQL Server\120\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn\ManagementStudio;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn;C:\DataAnalytics\GOSU\gosu-0.8.6.1-C\bin;C:\Program Files\Git\cmd;C:\Program Files\TortoiseGit\bin;C:\Program Files\nodejs;C:\Users\Administrator\AppData\Roaming\npm;C:\Program Files\Git\usr\bin\vendor_perl;C:\Program Files\Git\usr\bin\core_perl, user.language=en, env.EXEPATH=C:\Program Files\Git, env.WINDIR=C:\Windows, sun.boot.library.path=C:\DataAnalytics\Platform\jdk1.7.0_80\jre\bin, classworlds.conf=C:/Users/Administrator/Desktop/Coinbase API/apache-maven-3.5.0-bin/apache-maven-3.5.0/bin/m2.conf, env.GOSU_HOME=C:\DataAnalytics\GOSU\gosu-0.8.6.1-C, powermock.version=1.5.5, env.MSYSTEM_CHOST=x86_64-w64-mingw32, java.version=1.7.0_80, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 37 Stepping 1, GenuineIntel, user.timezone=America/Los_Angeles, env.MINGW_PREFIX=C:/Program Files/Git/mingw64, env.TEMP=C:\Users\ADMINI~1\AppData\Local\Temp\1, sun.arch.data.model=64, java.endorsed.dirs=C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\endorsed, sun.cpu.isalist=amd64, env.HOMEDRIVE=C:, sun.jnu.encoding=Cp1252, file.encoding.pkg=sun.io, env.SHLVL=1, env.SYSTEMDRIVE=C:, file.separator=\, env.HOSTNAME=2012r2std, java.specification.name=Java Platform API Specification, maven.conf=C:/Users/Administrator/Desktop/Coinbase API/apache-maven-3.5.0-bin/apache-maven-3.5.0/conf, java.class.version=51.0, org.slf4j.simpleLogger.defaultLogLevel=debug, user.country=US, env.PRINTER=Microsoft XPS Document Writer, java.home=C:\DataAnalytics\Platform\jdk1.7.0_80\jre, env.APPDATA=C:\Users\Administrator\AppData\Roaming, env.PUBLIC=C:\Users\Public, java.vm.info=mixed mode, env.OS=Windows_NT, os.version=6.3, env.=::=::\, env.CONFIG_SITE=C:/Program Files/Git/mingw64/etc/config.site, path.separator=;, env.ACLOCAL_PATH=C:\Program Files\Git\mingw64\share\aclocal;C:\Program Files\Git\usr\share\aclocal, env.MINGW_PACKAGE_PREFIX=mingw-w64-x86_64, java.vm.version=24.80-b11, user.variant=, env.USERPROFILE=C:\Users\Administrator, env.JAVA_HOME=C:/DataAnalytics/Platform/jdk1.7.0_80, java.awt.printerjob=sun.awt.windows.WPrinterJob, env.TERM=xterm, env.TMP=C:\Users\ADMINI~1\AppData\Local\Temp\1, env.PROGRAMFILES=C:\Program Files, sun.io.unicode.encoding=UnicodeLittle, awt.toolkit=sun.awt.windows.WToolkit, user.script=, env.MANPATH=C:\Program Files\Git\mingw64\share\man;C:\Program Files\Git\usr\local\man;C:\Program Files\Git\usr\share\man;C:\Program Files\Git\usr\man;C:\Program Files\Git\share\man, env.ORIGINAL_TMP=C:/Users/ADMINI~1/AppData/Local/Temp/1, user.home=C:\Users\Administrator, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, env.OLDPWD=C:/Users/Administrator/Desktop/Coinbase API/coinbase-java, env.SESSIONNAME=Console, java.specification.vendor=Oracle Corporation, library.jansi.path=C:\Users\Administrator\Desktop\Coinbase API\apache-maven-3.5.0-bin\apache-maven-3.5.0\lib\jansi-native\windows64, java.library.path=C:\DataAnalytics\Platform\jdk1.7.0_80\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Users\Administrator\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\local\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Users\Administrator\bin;C:\DataAnalytics\Platform\jdk1.7.0_80\bin;C:\gwdemo\release\DT92\Platform\apache-ant-1.8.2\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn;C:\Program Files\Microsoft SQL Server\120\Tools\Binn;C:\Program Files\Microsoft SQL Server\120\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn\ManagementStudio;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn;C:\DataAnalytics\GOSU\gosu-0.8.6.1-C\bin;C:\Program Files\Git\cmd;C:\Program Files\TortoiseGit\bin;C:\Program Files\nodejs;C:\Users\Administrator\AppData\Roaming\npm;C:\Program Files\Git\usr\bin\vendor_perl;C:\Program Files\Git\usr\bin\core_perl;., java.vendor.url=http://java.oracle.com/, env.NUMBER_OF_PROCESSORS=8, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.PSMODULEPATH=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\PowerShell\Modules\, env.MAVEN_CMD_LINE_ARGS= package -X, java.vm.vendor=Oracle Corporation, maven.home=C:\Users\Administrator\Desktop\Coinbase API\apache-maven-3.5.0-bin\apache-maven-3.5.0, java.runtime.name=Java(TM) SE Runtime Environment, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher package -X, java.class.path=C:/Users/Administrator/Desktop/Coinbase API/apache-maven-3.5.0-bin/apache-maven-3.5.0/boot/plexus-classworlds-2.5.2.jar, env.MSYSTEM_CARCH=x86_64, sonatypeOssDistMgmtSnapshotsUrl=https://oss.sonatype.org/content/repositories/snapshots/, env.PROGRAMW6432=C:\Program Files, maven.version=3.5.0, env.PROGRAMFILES(X86)=C:\Program Files (x86), java.vm.specification.name=Java Virtual Machine Specification, env.LOGONSERVER=\\2012R2STD, java.vm.specification.version=1.7, env.PROCESSOR_ARCHITECTURE=AMD64, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, sun.cpu.endian=little, sun.os.patch.level=, env.HOME=C:\Users\Administrator, env.ANT_HOME=C:\gwdemo\release\DT92\Platform\apache-ant-1.8.2, java.io.tmpdir=C:\Users\ADMINI~1\AppData\Local\Temp\1\, env.PROCESSOR_REVISION=2501, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, maven.multiModuleProjectDirectory=C:/Users/Administrator/Desktop/Coinbase API/coinbase-java, env.ORIGINAL_PATH=C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Users\Administrator\bin;C:\DataAnalytics\Platform\jdk1.7.0_80\bin;C:\gwdemo\release\DT92\Platform\apache-ant-1.8.2\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn;C:\Program Files\Microsoft SQL Server\120\Tools\Binn;C:\Program Files\Microsoft SQL Server\120\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn\ManagementStudio;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn;C:\DataAnalytics\GOSU\gosu-0.8.6.1-C\bin;C:\Program Files\Git\cmd;C:\Program Files\TortoiseGit\bin;C:\Program Files\nodejs;C:\Users\Administrator\AppData\Roaming\npm, env.PROGRAMDATA=C:\ProgramData, env.COMSPEC=C:\Windows\system32\cmd.exe, env.JAVA18_HOME=C:\gwdemo\release\DT92\Platform\jdk1.8.0_66, os.arch=amd64, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.PLINK_PROTOCOL=ssh, java.ext.dirs=C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\ext;C:\Windows\Sun\Java\lib\ext, env.MINGW_CHOST=x86_64-w64-mingw32, user.dir=C:\Users\Administrator\Desktop\Coinbase API\coinbase-java, env.LOCALAPPDATA=C:\Users\Administrator\AppData\Local, env.ORIGINAL_TEMP=C:/Users/ADMINI~1/AppData/Local/Temp/1, env.INFOPATH=C:\Program Files\Git\usr\local\info;C:\Program Files\Git\usr\share\info;C:\Program Files\Git\usr\info;C:\Program Files\Git\share\info, line.separator= , env.LC_ALL=C, java.vm.name=Java HotSpot(TM) 64-Bit Server VM, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, env.USERNAME=Administrator, file.encoding=Cp1252, env.MSYSTEM_PREFIX=C:/Program Files/Git/mingw64, env.PKG_CONFIG_PATH=C:\Program Files\Git\mingw64\lib\pkgconfig;C:\Program Files\Git\mingw64\share\pkgconfig, env.USERDOMAIN=2012R2STD, java.specification.version=1.7, env.MAVEN_PROJECTBASEDIR=C:/Users/Administrator/Desktop/Coinbase API/coinbase-java, env.SSH_ASKPASS=C:/Program Files/Git/mingw64/libexec/git-core/git-gui--askpass, env.PROCESSOR_LEVEL=6} [�[1;34mINFO�[m] Using 'UTF-8' encoding to copy filtered resources. [�[1;36mDEBUG�[m] resource with targetPath null directory C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\main\resources excludes [] includes [] [�[1;36mDEBUG�[m] ignoreDelta true [�[1;34mINFO�[m] Copying 4 resources [�[1;36mDEBUG�[m] file ca-coinbase.bks has a filtered file extension [�[1;36mDEBUG�[m] copy C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\main\resources\com\coinbase\api\ca-coinbase.bks to C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes\com\coinbase\api\ca-coinbase.bks [�[1;36mDEBUG�[m] file ca-coinbase.jks has a filtered file extension [�[1;36mDEBUG�[m] copy C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\main\resources\com\coinbase\api\ca-coinbase.jks to C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes\com\coinbase\api\ca-coinbase.jks [�[1;36mDEBUG�[m] file coinbase-callback.pub.der has a filtered file extension [�[1;36mDEBUG�[m] copy C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\main\resources\com\coinbase\api\coinbase-callback.pub.der to C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes\com\coinbase\api\coinbase-callback.pub.der [�[1;36mDEBUG�[m] file MoneyDataExtension.csv has a filtered file extension [�[1;36mDEBUG�[m] copy C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\main\resources\org\joda\money\MoneyDataExtension.csv to C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes\org\joda\money\MoneyDataExtension.csv [�[1;36mDEBUG�[m] no use filter components [�[1;34mINFO�[m] [�[1;34mINFO�[m] �[1m--- �[0;32mmaven-compiler-plugin:3.1:compile�[m �[1m(default-compile)�[m @ �[36mcoinbase-java�[0;1m ---�[m [�[1;36mDEBUG�[m] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=160, ConflictIdSorter.graphTime=1, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=43, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=3, ConflictResolver.conflictItemCount=63, DefaultDependencyCollector.collectTime=158, DefaultDependencyCollector.transformTime=5} [�[1;36mDEBUG�[m] org.apache.maven.plugins:maven-compiler-plugin:jar:3.1: [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-api:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-artifact:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-utils:jar:1.5.1:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-core:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-settings:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-profile:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-model:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-repository-metadata:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-error-diagnostics:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-project:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-registry:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-plugin-descriptor:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-artifact-manager:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-monitor:jar:2.0.9:compile [�[1;36mDEBUG�[m] org.apache.maven:maven-toolchain:jar:1.0:compile [�[1;36mDEBUG�[m] org.apache.maven.shared:maven-shared-utils:jar:0.1:compile [�[1;36mDEBUG�[m] com.google.code.findbugs:jsr305:jar:2.0.1:compile [�[1;36mDEBUG�[m] org.apache.maven.shared:maven-shared-incremental:jar:1.1:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-compiler-api:jar:2.2:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-compiler-manager:jar:2.2:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-compiler-javac:jar:2.2:runtime [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-container-default:jar:1.5.5:compile [�[1;36mDEBUG�[m] org.codehaus.plexus:plexus-classworlds:jar:2.2.2:compile [�[1;36mDEBUG�[m] org.apache.xbean:xbean-reflect:jar:3.4:compile [�[1;36mDEBUG�[m] log4j:log4j:jar:1.2.12:compile [�[1;36mDEBUG�[m] commons-logging:commons-logging-api:jar:1.1:compile [�[1;36mDEBUG�[m] com.google.collections:google-collections:jar:1.0:compile [�[1;36mDEBUG�[m] junit:junit:jar:3.8.2:compile [�[1;36mDEBUG�[m] Created new class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.1 [�[1;36mDEBUG�[m] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.1 [�[1;36mDEBUG�[m] Imported: < maven.api [�[1;36mDEBUG�[m] Populating class realm plugin>org.apache.maven.plugins:maven-compiler-plugin:3.1 [�[1;36mDEBUG�[m] Included: org.apache.maven.plugins:maven-compiler-plugin:jar:3.1 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-utils:jar:1.5.1 [�[1;36mDEBUG�[m] Included: org.apache.maven.shared:maven-shared-utils:jar:0.1 [�[1;36mDEBUG�[m] Included: com.google.code.findbugs:jsr305:jar:2.0.1 [�[1;36mDEBUG�[m] Included: org.apache.maven.shared:maven-shared-incremental:jar:1.1 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-compiler-api:jar:2.2 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-compiler-manager:jar:2.2 [�[1;36mDEBUG�[m] Included: org.codehaus.plexus:plexus-compiler-javac:jar:2.2 [�[1;36mDEBUG�[m] Included: org.apache.xbean:xbean-reflect:jar:3.4 [�[1;36mDEBUG�[m] Included: log4j:log4j:jar:1.2.12 [�[1;36mDEBUG�[m] Included: commons-logging:commons-logging-api:jar:1.1 [�[1;36mDEBUG�[m] Included: com.google.collections:google-collections:jar:1.0 [�[1;36mDEBUG�[m] Included: junit:junit:jar:3.8.2 [�[1;36mDEBUG�[m] Configuring mojo org.apache.maven.plugins:maven-compiler-plugin:3.1:compile from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-compiler-plugin:3.1, parent: sun.misc.Launcher$AppClassLoader@30a4effe] [�[1;36mDEBUG�[m] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.1:compile' with basic configurator --> [�[1;36mDEBUG�[m] (f) basedir = C:\Users\Administrator\Desktop\Coinbase API\coinbase-java [�[1;36mDEBUG�[m] (f) buildDirectory = C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target [�[1;36mDEBUG�[m] (f) classpathElements = [C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes, C:\Users\Administrator\.m2\repository\joda-time\joda-time\2.3\joda-time-2.3.jar, C:\Users\Administrator\.m2\repository\net\sf\opencsv\opencsv\2.0\opencsv-2.0.jar, C:\Users\Administrator\.m2\repository\org\joda\joda-money\0.9.1\joda-money-0.9.1.jar, C:\Users\Administrator\.m2\repository\com\fasterxml\jackson\datatype\jackson-datatype-joda\2.4.0\jackson-datatype-joda-2.4.0.jar, C:\Users\Administrator\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.4.0\jackson-annotations-2.4.0.jar, C:\Users\Administrator\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.4.0\jackson-core-2.4.0.jar, C:\Users\Administrator\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.4.0\jackson-databind-2.4.0.jar, C:\Users\Administrator\.m2\repository\commons-codec\commons-codec\1.9\commons-codec-1.9.jar, C:\Users\Administrator\.m2\repository\commons-io\commons-io\2.4\commons-io-2.4.jar, C:\Users\Administrator\.m2\repository\org\apache\httpcomponents\httpclient\4.3.6\httpclient-4.3.6.jar, C:\Users\Administrator\.m2\repository\org\apache\httpcomponents\httpcore\4.3.3\httpcore-4.3.3.jar, C:\Users\Administrator\.m2\repository\commons-logging\commons-logging\1.1.3\commons-logging-1.1.3.jar] [�[1;36mDEBUG�[m] (f) compileSourceRoots = [C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\main\java] [�[1;36mDEBUG�[m] (f) compilerId = javac [�[1;36mDEBUG�[m] (f) debug = true [�[1;36mDEBUG�[m] (f) encoding = UTF-8 [�[1;36mDEBUG�[m] (f) failOnError = true [�[1;36mDEBUG�[m] (f) forceJavacCompilerUse = false [�[1;36mDEBUG�[m] (f) fork = true [�[1;36mDEBUG�[m] (f) generatedSourcesDirectory = C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\generated-sources\annotations [�[1;36mDEBUG�[m] (f) mojoExecution = org.apache.maven.plugins:maven-compiler-plugin:3.1:compile {execution: default-compile} [�[1;36mDEBUG�[m] (f) optimize = false [�[1;36mDEBUG�[m] (f) outputDirectory = C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes [�[1;36mDEBUG�[m] (f) projectArtifact = com.coinbase.api:coinbase-java:jar:1.11.0-SNAPSHOT [�[1;36mDEBUG�[m] (f) showDeprecation = true [�[1;36mDEBUG�[m] (f) showWarnings = true [�[1;36mDEBUG�[m] (f) skipMultiThreadWarning = false [�[1;36mDEBUG�[m] (f) source = 1.6 [�[1;36mDEBUG�[m] (f) staleMillis = 0 [�[1;36mDEBUG�[m] (f) target = 1.6 [�[1;36mDEBUG�[m] (f) useIncrementalCompilation = true [�[1;36mDEBUG�[m] (f) verbose = false [�[1;36mDEBUG�[m] (f) mavenSession = org.apache.maven.execution.MavenSession@1f865b82 [�[1;36mDEBUG�[m] (f) session = org.apache.maven.execution.MavenSession@1f865b82 [�[1;36mDEBUG�[m] -- end configuration -- [�[1;36mDEBUG�[m] Using compiler 'javac'. [�[1;36mDEBUG�[m] Source directories: [C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\main\java] [�[1;36mDEBUG�[m] Classpath: [C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes C:\Users\Administrator\.m2\repository\joda-time\joda-time\2.3\joda-time-2.3.jar C:\Users\Administrator\.m2\repository\net\sf\opencsv\opencsv\2.0\opencsv-2.0.jar C:\Users\Administrator\.m2\repository\org\joda\joda-money\0.9.1\joda-money-0.9.1.jar C:\Users\Administrator\.m2\repository\com\fasterxml\jackson\datatype\jackson-datatype-joda\2.4.0\jackson-datatype-joda-2.4.0.jar C:\Users\Administrator\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.4.0\jackson-annotations-2.4.0.jar C:\Users\Administrator\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.4.0\jackson-core-2.4.0.jar C:\Users\Administrator\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.4.0\jackson-databind-2.4.0.jar C:\Users\Administrator\.m2\repository\commons-codec\commons-codec\1.9\commons-codec-1.9.jar C:\Users\Administrator\.m2\repository\commons-io\commons-io\2.4\commons-io-2.4.jar C:\Users\Administrator\.m2\repository\org\apache\httpcomponents\httpclient\4.3.6\httpclient-4.3.6.jar C:\Users\Administrator\.m2\repository\org\apache\httpcomponents\httpcore\4.3.3\httpcore-4.3.3.jar C:\Users\Administrator\.m2\repository\commons-logging\commons-logging\1.1.3\commons-logging-1.1.3.jar] [�[1;36mDEBUG�[m] Output directory: C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\classes [�[1;36mDEBUG�[m] CompilerReuseStrategy: reuseCreated [�[1;36mDEBUG�[m] useIncrementalCompilation enabled [�[1;34mINFO�[m] Nothing to compile - all classes are up to date [�[1;34mINFO�[m] [�[1;34mINFO�[m] �[1m--- �[0;32mmaven-resources-plugin:2.6:testResources�[m �[1m(default-testResources)�[m @ �[36mcoinbase-java�[0;1m ---�[m [�[1;36mDEBUG�[m] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.6:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.6, parent: sun.misc.Launcher$AppClassLoader@30a4effe] [�[1;36mDEBUG�[m] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.6:testResources' with basic configurator --> [�[1;36mDEBUG�[m] (f) buildFilters = [] [�[1;36mDEBUG�[m] (f) encoding = UTF-8 [�[1;36mDEBUG�[m] (f) escapeWindowsPaths = true [�[1;36mDEBUG�[m] (s) includeEmptyDirs = false [�[1;36mDEBUG�[m] (s) outputDirectory = C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\target\test-classes [�[1;36mDEBUG�[m] (s) overwrite = false [�[1;36mDEBUG�[m] (f) project = MavenProject: com.coinbase.api:coinbase-java:1.11.0-SNAPSHOT @ C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\pom.xml [�[1;36mDEBUG�[m] (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Users\Administrator\Desktop\Coinbase API\coinbase-java\src\test\resources, PatternSet [includes: {}, excludes: {}]}}] [�[1;36mDEBUG�[m] (f) session = org.apache.maven.execution.MavenSession@1f865b82 [�[1;36mDEBUG�[m] (f) supportMultiLineFiltering = false [�[1;36mDEBUG�[m] (f) useBuildFilters = true [�[1;36mDEBUG�[m] (s) useDefaultDelimiters = true [�[1;36mDEBUG�[m] -- end configuration -- [�[1;36mDEBUG�[m] properties used {java.vendor=Oracle Corporation, env.SYSTEMROOT=C:\Windows, env.USERDOMAIN_ROAMINGPROFILE=2012R2STD, sun.java.launcher=SUN_STANDARD, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.name=Windows Server 2012 R2, env.FP_NO_HOST_CHECK=NO, sun.boot.class.path=C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\resources.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\rt.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\sunrsasign.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\jsse.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\jce.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\charsets.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\lib\jfr.jar;C:\DataAnalytics\Platform\jdk1.7.0_80\jre\classes, env.TMPDIR=C:\Users\ADMINI~1\AppData\Local\Temp\1, env.COMPUTERNAME=2012R2STD, env.PWD=C:/Users/Administrator/Desktop/Coinbase API/coinbase-java, env.ALLUSERSPROFILE=C:\ProgramData, sun.desktop=windows, java.vm.specification.vendor=Oracle Corporation, java.runtime.version=1.7.0_80-b15, env.HOMEPATH=\Users\Administrator, project.build.sourceEncoding=UTF-8, env.DISPLAY=needs-to-be-defined, user.name=Administrator, maven.build.version=Apache Maven 3.5.0 (ff8f5e7444045639af65f6095c62210b5713f426; 2017-04-03T12:39:06-07:00), env.SHELL=C:\Program Files\Git\usr\bin\bash, env.MSYSTEM=MINGW64, env.PATH=C:\Users\Administrator\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\local\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Users\Administrator\bin;C:\DataAnalytics\Platform\jdk1.7.0_80\bin;C:\gwdemo\release\DT92\Platform\apache-ant-1.8.2\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn;C:\Program Files\Microsoft SQL Server\120\Tools\Binn;C:\Program Files\Microsoft SQL Server\120\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\Tools\Binn\ManagementStudio;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn;C:\DataAnalytics\GOSU\gosu-0.8.6.1-C\bin;C:\Program Files\Git\cmd;C:\Program Files\TortoiseGit\bin;C:\Program Files\nodejs;C:\Users\Administrator\AppData\Roaming\npm;C:\Program Files\Git\usr\bin\vendor_perl;C:\Program Files\Git\usr\bin\core_perl, user.language=en, env.EXEPATH=C:\Program Files\Git, env.WINDIR=C:\Windows, sun.boot.library.path=C:\DataAnalytics\Platform\jdk1.7.0_80\jre\bin, classworlds.conf=C:/Users/Administrator/Desktop/Coinbase API/apache-maven-3.5.0-bin/apache-mav

button.setVariable price and choose price?

I'm generating code for a button that needs to have a variable price entered in. The Coinbase API reference says that you must set button.choosePrice as true, and button.variablePrice as true. But in coinbase-java I only see button.setChoosePrice, variable price isn't there.

According to the comments on this page:
https://coinbase.com/api/doc/1.0/buttons/create.html

If this can't be added quickly, can someone let me know if there is a way to use setCustom? I'm not sure how that works.

Oauth Token CoinbaseBuilder Error

I have a question about the CoinbaseBuilder.

I have followed the authentication example in the coinbase android sdk example (https://github.com/coinbase/coinbase-android-sdk), and I have successfully returned my email. In the onSuccess method in the CompleteAuthorizationTask class I am able to store the AccessToken into a String.

When I try to use this String to build a new CoinbaseBuilder I am able to create the Coinbase object (example below) (token is the AccessToken stored in a String from CompleteAuthorizationTask).

In onSuccess I use:
token = tokens.getAccessToken();

In a button onClickListener I use the following code to create the Coinbase Object.

Coinbase cb = new CoinbaseBuilder()
.withAccessToken(token)
.build();

Whenever I try to call methods from my new cb object in the onClickListener after initializing the Coinbase object my app crashes (actually is caught in the try catch(Exception e) block.

Any ideas as to why I am not able to use the Coinbase object with the token that I am using? Is this the wrong token to initialize the Coinbase object?

I have attached the image of a typical access token that I receive and the cb object associated with the accesstoken. I also am curious as to why all the other values are null when I initialize the object (attached as a png). Based on the documentation on (https://github.com/coinbase/coinbase-java/blob/master/README.md), the required values in order to create the Coinbase object is only the OAuth token.

image

image

Waiting for XinFin-XDC Network support in Coinbase wallet

Please have a look at the XinFin-network use cases, The XinFin blockchain utilizes the XinFin Delegated Proof-of-Stake consensus(XDPoS) mechanism for smoother digitization of industrial processes and almost-instant trade settlement.

We are waiting for XinFin-XDC Network support in Coinbase wallet.

Github:- https://github.com/XinFinOrg/XDPoSChain
CMC :- https://coinmarketcap.com/currencies/xinfin-network/
Circulating Supply:- https://explorerapi.xinfin.network/publicAPI?module=balance&action=getcirculatingsupply
Total Supply:- https://explorerapi.xinfin.network/publicAPI?module=balance&action=totalXDC
Docker FullNode:- https://github.com/xinfinorg/XinFin-Node
Integration Code example: https://xinfin.org/exchange-listing-resource

Technical Community Support available at:

Telegram Community: https://t.me/XinFinDevelopers
Slack Community: https://xinfin-public.slack.com/messages/CELR2M831/
Slack Invitation Link: https://launchpass.com/xinfin-public
Technical help Resource: http://howto.xinfin.org/

Happy to talk commercials as well as ready to support with large XinFin Community members support to grow adoption with Coinbase wallet team.

Is any of this still working?

Whatever I do, from Java using coinbase-java, or using the REST API directly in Chrome or PostMan, I always get the following json response, whether I use an API key or not:

{
    "errors": [
        {
            "id": "not_found",
            "message": "Not found"
        }
    ]
}

Did they change the v1 api? I can't find the old documentation either. v2 performs better in PostMan, but is not supported in the released coinbase-java (Maven dependency).

Another commerce issue

Hi, this is probably the wrong module, but I can find anyplace to post issues for the coinbase commerce stack and the main support channels seem to have a months-long backlog.

Coinbase commerce works OK, but has one basic UI issue: it doesn't allow setting of the icon when creating a charge that is not made from a checkout.
This makes the UI for the hosted solution look broken.
Request: support some form of setting the image when directly creating a charge, much the way it is supported today when creating a checkout.

(We can't use a checkout because there's no support there for extended metadata :-( It has a "requested_info" field, but there are only two possible values. In particular, there's no way to collect an invoice number of similar, making it hard to use for linking to actual charges in commerce. So, both avenues have led to a dead end and there appears to be little-to-no connection to the tech team via the standard support channels. Can you suggest a way to give this to the right team?)

get[Sell|Buy]Quote commit not set

I looked at the implementation of getSellQuote and getBuyQuote. I noticed that the commit parameter is not set. Is this done on purpose?

The server API reference for sell says, "Defaults to true. If set to false, this buy will not be immediately completed. Use the POST /transfers/:id/commit call to complete it"

I'm guessing right now it works because it's doing a GET rather than a POST. If that's the case, could the documentation be changed? At the moment, it just seems odd, or maybe I'm missing something. Thanks!

String index out of range

 java.lang.StringIndexOutOfBoundsException: String index out of range: -1
! at java.lang.String.substring(String.java:1871) ~[na:1.7.0_75]
! at org.whispersystems.bithub.storage.CoinbaseTransactionParser.parseUrlFromMessage(CoinbaseTransactionParser.java:55) ~[BitHub-0.1.jar:0.1]
  public String parseUrlFromMessage() throws ParseException {
    String message = StringEscapeUtils.unescapeHtml4(coinbaseTransaction.getNotes());
    int urlIndex = message.indexOf("https://");

    return message.substring(urlIndex).trim(); // this line
  }

Javadoc Published?

This might be a dumb questions, but are the javadocs published anywhere? I see that they're there in the source code, but I can't find them anywhere.

Is Coinbase thread-safe?

I couldn't find anything documenting if this API is thread-safe. Is it? It would be helpful to have that somewhere documented.

Please let me configure timeouts

I would love to be able to set the connect and read timeouts. If this is already possible could you please point me to that place?

Java 6 support

The artifacts uploaded to Maven central are compiled with Java 7. Would it be possible to either compile future version using Java 6, or, upload both the default Java 7 version and also a Java 6 version with a classifier?

Reason I ask is because 6 is still widely used. I would conjecture it especially has a lot of popularity in the enterprise space as enterprises are generally slower to react to versioning updates.

Where I work we are in this situation. Our application servers use 6. For our purposes the solution is easy enough, but tedious. Recreate the artifact with 6 and upload to our corporate Nexus repository for distribution internally. The 1.3.0 source compiled just fine using Java 6, all tests passed, and the single feature I'm using from this library (createButton) is working as expected.

Coinbase Commerce IP Address ranges

As part of our steps to secure our backing server we'd like to restrict access to the API to only IP addresses known to be used by Coinbase Commerce servers making the webhook calls. Do you provide a list of those IP ranges?

Remove dependencies on android studio

I am trying to build this project using "gradle build" but I get this:

SDK location not found. Define location with sdk.dir in the local.properties file or with an ANDROID_HOME environment variable.

I googled a bit and this seems to do with a dependency on Android's SDK. Can we make this platform agnostic?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.