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!
Leave a Reply