Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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