Skip to content

Commit 0a388b8

Browse files
authored
Merge pull request #122 from SpineEventEngine/release-1.0.0
Release 1.0.0
2 parents 7488b21 + 16219d6 commit 0a388b8

File tree

5 files changed

+37
-15
lines changed

5 files changed

+37
-15
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@
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+
These artifacts should be used as a part of the Spine server application.
26+
27+
For the details on setting up the server environment please refer to [Spine Bootstrap Gradle plugin](https://github.com/SpineEventEngine/bootstrap/)
28+
and [Spine `core` modules](https://github.com/SpineEventEngine/core-java/) documentation.
29+
830
### Configuring Datastore
931

1032
#### Datastore indexes

license-report.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
# Dependencies of `io.spine.gcloud:spine-datastore:1.0.0-SNAPSHOT`
3+
# Dependencies of `io.spine.gcloud:spine-datastore:1.0.0`
44

55
## Runtime
66
1. **Group:** com.fasterxml.jackson.core **Name:** jackson-core **Version:** 2.9.6
@@ -780,12 +780,12 @@
780780
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
781781

782782

783-
This report was generated on **Fri Aug 02 19:17:57 EEST 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
783+
This report was generated on **Mon Aug 05 15:22:10 EEST 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
784784

785785

786786

787787

788-
# Dependencies of `io.spine.gcloud:spine-stackdriver-trace:1.0.0-SNAPSHOT`
788+
# Dependencies of `io.spine.gcloud:spine-stackdriver-trace:1.0.0`
789789

790790
## Runtime
791791
1. **Group:** com.fasterxml.jackson.core **Name:** jackson-core **Version:** 2.9.6
@@ -1549,4 +1549,4 @@ This report was generated on **Fri Aug 02 19:17:57 EEST 2019** using [Gradle-Lic
15491549
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
15501550

15511551

1552-
This report was generated on **Fri Aug 02 19:18:10 EEST 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
1552+
This report was generated on **Mon Aug 05 15:22:12 EEST 2019** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ all modules and does not describe the project structure per-subproject.
1212

1313
<groupId>io.spine.gcloud</groupId>
1414
<artifactId>spine-gcloud-java</artifactId>
15-
<version>1.0.0-SNAPSHOT</version>
15+
<version>1.0.0</version>
1616

1717
<inceptionYear>2015</inceptionYear>
1818

@@ -40,7 +40,7 @@ all modules and does not describe the project structure per-subproject.
4040
<dependency>
4141
<groupId>io.spine</groupId>
4242
<artifactId>spine-server</artifactId>
43-
<version>1.0.0-SNAPSHOT</version>
43+
<version>1.0.0</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
<dependency>
@@ -52,7 +52,7 @@ all modules and does not describe the project structure per-subproject.
5252
<dependency>
5353
<groupId>io.spine</groupId>
5454
<artifactId>spine-testutil-server</artifactId>
55-
<version>1.0.0-SNAPSHOT</version>
55+
<version>1.0.0</version>
5656
<scope>test</scope>
5757
</dependency>
5858
<dependency>
@@ -70,19 +70,19 @@ all modules and does not describe the project structure per-subproject.
7070
<dependency>
7171
<groupId>org.junit.jupiter</groupId>
7272
<artifactId>junit-jupiter-api</artifactId>
73-
<version>5.4.2</version>
73+
<version>5.5.1</version>
7474
<scope>test</scope>
7575
</dependency>
7676
<dependency>
7777
<groupId>org.junit.jupiter</groupId>
7878
<artifactId>junit-jupiter-engine</artifactId>
79-
<version>5.4.2</version>
79+
<version>5.5.1</version>
8080
<scope>test</scope>
8181
</dependency>
8282
<dependency>
8383
<groupId>org.junit.jupiter</groupId>
8484
<artifactId>junit-jupiter-params</artifactId>
85-
<version>5.4.2</version>
85+
<version>5.5.1</version>
8686
<scope>test</scope>
8787
</dependency>
8888
<dependency>
@@ -120,17 +120,17 @@ all modules and does not describe the project structure per-subproject.
120120
<dependency>
121121
<groupId>io.spine.tools</groupId>
122122
<artifactId>spine-errorprone-checks</artifactId>
123-
<version>1.0.0-SNAPSHOT</version>
123+
<version>1.0.0</version>
124124
</dependency>
125125
<dependency>
126126
<groupId>io.spine.tools</groupId>
127127
<artifactId>spine-protoc-plugin</artifactId>
128-
<version>1.0.0-SNAPSHOT</version>
128+
<version>1.0.0</version>
129129
</dependency>
130130
<dependency>
131131
<groupId>net.sourceforge.pmd</groupId>
132132
<artifactId>pmd-java</artifactId>
133-
<version>6.13.0</version>
133+
<version>6.16.0</version>
134134
</dependency>
135135
<dependency>
136136
<groupId>org.jacoco</groupId>

version.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* {@code .config/gradle/dependencies.gradle}.
2626
*/
2727

28-
def final SPINE_VERSION = '1.0.0-SNAPSHOT'
28+
def final SPINE_VERSION = '1.0.0'
2929

3030
ext {
3131
spineBaseVersion = '1.0.0'

0 commit comments

Comments
 (0)