Skip to content

Commit

Permalink
Merge pull request #122 from SpineEventEngine/release-1.0.0
Browse files Browse the repository at this point in the history
Release 1.0.0
  • Loading branch information
armiol authored Aug 5, 2019
2 parents 7488b21 + 16219d6 commit 0a388b8
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 15 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@

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

### Artifacts

Gradle:

```groovy
dependencies {
implementation (
// Datastore Storage support library.
"io.spine.gcloud:spine-datastore:1.0.0",
// Stackdriver Trace support library.
"io.spine.gcloud:spine-stackdriver-trace:1.0.0"
)
}
```

These artifacts should be used as a part of the Spine server application.

For the details on setting up the server environment please refer to [Spine Bootstrap Gradle plugin](https://github.com/SpineEventEngine/bootstrap/)
and [Spine `core` modules](https://github.com/SpineEventEngine/core-java/) documentation.

### Configuring Datastore

#### Datastore indexes
Expand Down
2 changes: 1 addition & 1 deletion config
8 changes: 4 additions & 4 deletions license-report.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


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

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


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).
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).




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

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


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).
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).
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ all modules and does not describe the project structure per-subproject.

<groupId>io.spine.gcloud</groupId>
<artifactId>spine-gcloud-java</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>

<inceptionYear>2015</inceptionYear>

Expand Down Expand Up @@ -40,7 +40,7 @@ all modules and does not describe the project structure per-subproject.
<dependency>
<groupId>io.spine</groupId>
<artifactId>spine-server</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand All @@ -52,7 +52,7 @@ all modules and does not describe the project structure per-subproject.
<dependency>
<groupId>io.spine</groupId>
<artifactId>spine-testutil-server</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -70,19 +70,19 @@ all modules and does not describe the project structure per-subproject.
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.4.2</version>
<version>5.5.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.4.2</version>
<version>5.5.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.4.2</version>
<version>5.5.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -120,17 +120,17 @@ all modules and does not describe the project structure per-subproject.
<dependency>
<groupId>io.spine.tools</groupId>
<artifactId>spine-errorprone-checks</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>io.spine.tools</groupId>
<artifactId>spine-protoc-plugin</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>6.13.0</version>
<version>6.16.0</version>
</dependency>
<dependency>
<groupId>org.jacoco</groupId>
Expand Down
2 changes: 1 addition & 1 deletion version.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* {@code .config/gradle/dependencies.gradle}.
*/

def final SPINE_VERSION = '1.0.0-SNAPSHOT'
def final SPINE_VERSION = '1.0.0'

ext {
spineBaseVersion = '1.0.0'
Expand Down

0 comments on commit 0a388b8

Please sign in to comment.