Logo
Home

Java SDK for QuickBooks Online is in maven central

We are pleased to announce that our QuickBooks Online Java SDK is now in maven central. You no longer need to manually download the SDK jars and install it in your environment. This has been requested by several of our Java developers and we are happy to make the jars available publicly in maven now.

Follow the steps below to include the SDK in your project:

1. For maven project, add the following dependencies to the pom.xml

<!-- data jar -->
<dependency>
<groupId>com.intuit.quickbooks-online</groupId>
<artifactId>ipp-v3-java-data</artifactId>
<version>2.9.0</version>
</dependency>

<!-- devkit jar without dependencies-->
<dependency>
<groupId>com.intuit.quickbooks-online</groupId>
<artifactId>ipp-v3-java-devkit</artifactId>
<version>2.9.0</version>
</dependency>

 

2. For gradle project, add the following dependencies to the build.gradle file.

compile("com.intuit.quickbooks-online:ipp-v3-java-data:2.9.0")
compile("com.intuit.quickbooks-online:ipp-v3-java-devkit:2.9.0") 

 

Have comments or questions? Share them below or on our developer forums!


Posted

in

,

by

Comments

One response to “Java SDK for QuickBooks Online is in maven central”

  1. Erica Avatar
    Erica

    I’m not sure what you mean by “without dependencies” but there are, in fact, many dependencies in your jar files — far more than usual. As written your Maven files pulled in a mail jar that broke SMTP for us (fortunately caught in testing) and a logging jar. Some of this stuff should be marked “provided” especially as you are providing a framework destined to be included by other apps,

Leave a Reply

Your email address will not be published. Required fields are marked *