The Adobe Target Java SDK uses the [Target View Delivery API] to retrieve and deliver personalized experiences using best practices. Furthermore, the Java SDK helps manage integrations with Experience Cloud solutions like Visitor API and Adobe Analytics.
-
Checkout Server-Side Optimization post for benefits and best practices of using Target Java SDK.
-
Standalone Spring Boot based sample is available at target-java-sdk-samples
- Java 8+
- Maven or Gradle
To get started with Target Java SDK, just add it as a dependency in gradle
as:
implementation 'com.adobe.target:target-java-sdk:2.5.1'
or maven
as:
<dependency>
<groupId>com.adobe.target</groupId>
<artifactId>target-java-sdk</artifactId>
<version>2.5.1</version>
</dependency>
Please take a look at our documentation to learn how to use the Java SDK.
The Adobe Target Java SDK Samples can be found here.
Check out our Contribution guidelines as well as Code of Conduct prior to contributing to Target Java SDK development.
- To build the project:
./gradlew build
- To install
java-sdk
locally:./gradlew install
- To run the unit tests locally:
./gradlew test
The SDK depends on Target Open API. It uses Open API and the Open API generator
to generate the low level HTTP client.
To be able to use Target Open API
for code generation, we are leveraging Git subtree.
To refresh the local target-openapi
subtree, use the command:
git subtree pull --prefix openapi [email protected]:adobe/target-openapi.git main --squash
The openapi-generator config is located in the codegeneration
directory, but there is no need to invoke it directly. To regenerate the openapi models use the command: ./gradlew codegen spotlessApply