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
Copy file name to clipboardExpand all lines: README.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,17 @@ Most common use of the library would de-serialize an existing SPDX document usi
12
12
The methods enterCriticalSection and leaveCritialSection are available to support multi-threaded applications. These methods serialize access to the model store for the specific SPDX document used for the SPDX model object.
13
13
14
14
## Getting Started
15
+
The library is available in [Maven Central org.spdx:java-spdx-library](https://search.maven.org/artifact/org.spdx/java-spdx-library).
16
+
17
+
If you are using Maven, you can add the following dependency in your POM file:
18
+
```
19
+
<dependency>
20
+
<groupId>org.spdx</groupId>
21
+
<artifactId>java-spdx-library</artifactId>
22
+
<version>(,1.0]</version>
23
+
</dependency>
24
+
```
25
+
15
26
There are a couple of static classes that help common usage scenarios:
16
27
17
28
- org.spdx.library.SPDXModelFactory supports the creation of specific model objects
@@ -26,4 +37,4 @@ To update Spdx-Java-Library, the following is a very brief checklist:
26
37
4. Update unit tests
27
38
28
39
## Development Status
29
-
Note: This library is in development and likely contains defects. Reviews, suggestions are welcome. Please enter an issue with any suggestions.
40
+
Note: This library is mostly stable, but and contains some defects. Reviews, suggestions are welcome. Please enter an issue with any suggestions.
0 commit comments