Skip to content

Commit 56dea8d

Browse files
committed
Add the artifact versions to README.md.
1 parent 1828a0b commit 56dea8d

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

README.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,43 @@
55

66
Support for Spine-based Java apps running at Google Cloud.
77

8+
### Artifacts
9+
10+
Gradle:
11+
12+
```groovy
13+
dependencies {
14+
implementation (
15+
16+
// Datastore Storage support library.
17+
"io.spine.gcloud:spine-datastore:1.0.0",
18+
19+
// Stackdriver Trace support library.
20+
"io.spine.gcloud:spine-stackdriver-trace:1.0.0"
21+
)
22+
}
23+
```
24+
25+
Maven:
26+
```xml
27+
28+
<!-- Datastore Storage support library. -->
29+
<groupId>io.spine.gcloud</groupId>
30+
<artifactId>spine-datastore</artifactId>
31+
<version>1.0.0</version>
32+
33+
<!-- Stackdriver Trace support library. -->
34+
<groupId>io.spine.gcloud</groupId>
35+
<artifactId>spine-stackdriver-trace</artifactId>
36+
<version>1.0.0</version>
37+
38+
```
39+
40+
These artifacts should be used as a part of the Spine server application.
41+
42+
For the details on setting up the server environment please refer to [Spine Bootstrap Gradle plugin](https://github.com/SpineEventEngine/bootstrap/)
43+
and [Spine `core` modules](https://github.com/SpineEventEngine/core-java/) documentation.
44+
845
### Configuring Datastore
946

1047
#### Datastore indexes

0 commit comments

Comments
 (0)