Skip to content

Commit 920a361

Browse files
Add note on using snapshot releases (#2032)
1 parent d2a06fc commit 920a361

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,37 @@ or to *build.gradle*:
4242

4343
We'd love your help in improving the Temporal Java SDK. Please review our [contribution guidelines](CONTRIBUTING.md).
4444

45+
## Snapshot release
46+
47+
We also publish snapshot releases during SDK development often under the version `1.x.0-SNAPSHOT`. This allows users to test out new SDK features before an official SDK release.
48+
49+
[Snapshot releases](https://oss.sonatype.org/content/repositories/snapshots/io/temporal/temporal-sdk/) Find the latest snapsphot release.
50+
51+
To add Sonatype snapshot repository to your *pom.xml*:
52+
53+
<repositories>
54+
<repository>
55+
<id>oss-sonatype</id>
56+
<name>oss-sonatype</name>
57+
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
58+
<snapshots>
59+
<enabled>true</enabled>
60+
</snapshots>
61+
</repository>
62+
</repositories>
63+
64+
Or to *build.gradle*:
65+
66+
repositories {
67+
maven {
68+
url "https://oss.sonatype.org/content/repositories/snapshots/"
69+
}
70+
...
71+
}
72+
73+
Note: Snapshot releases are not official release and normal backwards compatibility, stability or support
74+
does not apply
75+
4576
## License
4677

4778
Copyright (C) 2022 Temporal Technologies, Inc. All Rights Reserved.

0 commit comments

Comments
 (0)