Please follow the steps carefully to ensure a successful build.
mvn
This will by default run the goals clean
and install
.
mvn -Punit
This will install the project and run all unit tests. By default, tests are not run.
The Uber JAR must be used to ensure shaded dependencies are included correctly.
<dependency>
<groupId>com.groupbyinc</groupId>
<artifactId>api-java-flux</artifactId>
<version>VERSION</version>
<classifier>uber</classifier>
</dependency>
compile group: 'com.groupbyinc', name: 'api-java-flux', version: 'VERSION', classifier: 'uber'
CloudBridge bridge = new CloudBridge("<client-key>", "<customer-id>");
Query query = new Query().setQuery("dvd");
Results results = bridge.search(query);