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
* Added pre-release warning and gradle instructions to README
* Added maven snippet and clarified wording in README quickstart
* Set syntaxes in code blocks
Copy file name to clipboardExpand all lines: README.md
+17-9Lines changed: 17 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,14 +38,22 @@ You can provide adapters for your video editing tool or pipeline as needed.
38
38
Quick-Start
39
39
-----------
40
40
41
-
You can add OpenTimelineIO as a dependency to your gradle project as:
42
-
```
43
-
<insert gradle dep>
44
-
```
41
+
> :warning:**This is pre-release software**: We're releasing these bindings to encourage feedback and participation, but we expect that there may be some breaking changes along the way. Please consider this if you decide to use the bindings in their current state.
42
+
43
+
You can add OpenTimelineIO as a gradle dependency to your `build.gradle` with:
45
44
46
-
You can add OpenTimelineIO as a dependency to your maven project as:
You can add OpenTimelineIO as a maven dependency to your pom.xml with:
50
+
51
+
```xml
52
+
<dependency>
53
+
<groupId>io.opentimeline</groupId>
54
+
<artifactId>opentimelineio</artifactId>
55
+
<version>0.14.0-beta-1</version>
56
+
</dependency>
49
57
```
50
58
51
59
@@ -55,7 +63,7 @@ Building OpenTimelineIO-Java-Bindings
55
63
OpenTimelineIO-Java-Bindings have been built and tested on Ubuntu 18.04LTS, Windows 10 and macOS using [Gradle](https://gradle.org/install/) and [CMake](https://cmake.org/download/).
56
64
After installing Gradle and CMake follw these steps:
0 commit comments