You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You'll need to use the Azure Communication Job Router client library for Java [version 1.0.0-beta.1](https://search.maven.org/artifact/com.azure/azure-communication-jobrouter/1.0.0-beta.1/jar) or above.
40
40
41
-
#### Include the BOM file
42
-
43
-
Include the `azure-sdk-bom` to your project to take dependency on the Public Preview version of the library. In the following snippet, replace the {bom_version_to_target} placeholder with the version number.
44
-
To learn more about the BOM, see the [Azure SDK BOM readme](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/boms/azure-sdk-bom/README.md).
45
-
46
-
```xml
47
-
<dependencyManagement>
48
-
<dependencies>
49
-
<dependency>
50
-
<groupId>com.azure</groupId>
51
-
<artifactId>azure-sdk-bom</artifactId>
52
-
<version>{bom_version_to_target}</version>
53
-
<type>pom</type>
54
-
<scope>import</scope>
55
-
</dependency>
56
-
</dependencies>
57
-
</dependencyManagement>
58
-
```
59
-
60
-
and then include the direct dependency in the dependencies section without the version tag.
If you want to take dependency on a particular version of the library that isn't present in the BOM, add the direct dependency to your project as follows.
0 commit comments