Build client applications
You can build and run Diffusion™ Java™ client applications without installing the Diffusion product. The Diffusion client JAR is all you need.
The following pom.xml shows how to declare the appropriate
dependencies:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>myclient</artifactId>
<version>1.0-SNAPSHOT</version>
<repositories>
<repository>
<id>push-repository</id>
<url>https://download.diffusiondata.com/maven/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.pushtechnology.diffusion</groupId>
<artifactId>diffusion-client</artifactId>
<version>6.11.2</version>
</dependency>
</dependencies>
</project>