@@ -13,7 +13,7 @@ Requires Java 7 or higher.
1313The project is under active ongoing development. At this stage, we do not recommend using the framework for production purposes.
1414You are welcome to experiment and [ provide your feedback] [ email-developers ] .
1515
16- The latest stable version is [ 0.8 .0] [ latest-release ] .
16+ The latest stable version is [ 0.10 .0] [ latest-release ] .
1717
1818Please track our release announcement to be informed about the production version (1.0.0) release.
1919
@@ -24,10 +24,10 @@ In order to add Spine to your project, please add the following code to your `bu
2424``` groovy
2525buildscript{
2626 ext {
27- spineVersion = '0.8 .0'
28- spinePluginVersion = '0.7.24 -SNAPSHOT'
27+ spineVersion = '0.10 .0'
28+ spineModelCompilerVersion = '0.9.41 -SNAPSHOT'
2929
30- protobufGradlePluginVersion = '0.8.0 '
30+ protobufGradlePluginVersion = '0.8.3 '
3131
3232 spineRepository = 'http://maven.teamdev.com/repository/spine'
3333 spineSnapshotsRepository = 'http://maven.teamdev.com/repository/spine-snapshots'
@@ -47,13 +47,14 @@ buildscript{
4747 dependencies {
4848 // ...
4949 classpath group: 'com.google.protobuf', name:'protobuf-gradle-plugin', version: protobufGradlePluginVersion
50- classpath group: 'io.spine.tools', name: 'protobuf-plugin', version: spinePluginVersion
50+ classpath group: 'io.spine.tools', name: 'spine-model-compiler', version: spineModelCompilerVersion
51+
5152 }
5253}
5354
5455apply plugin: 'java'
5556apply plugin: 'com.google.protobuf'
56- apply plugin: 'io.spine.tools.protobuf-plugin '
57+ apply plugin: 'io.spine.tools.spine-model-compiler '
5758
5859repositories {
5960 jcenter()
@@ -67,10 +68,10 @@ dependencies {
6768 // ...
6869
6970 // Client-side and shared API.
70- compile group: 'io.spine', name: 'spine-client-core ', version: spineVersion
71+ compile group: 'io.spine', name: 'spine-client', version: spineVersion
7172
7273 // Add this only for server-side code.
73- compile group: 'io.spine', name: 'spine-server-core ', version: spineVersion
74+ compile group: 'io.spine', name: 'spine-server', version: spineVersion
7475}
7576```
7677There is no Maven support at the moment.
@@ -85,8 +86,10 @@ If you plan to contribute to the project please visit these pages:
8586* [ Wiki home] [ wiki-home ]
8687
8788## Important Warnings
88- * The code annotated with ` @Internal ` are not parts of public API of the framework.
89- They can be modified without preserving backward compatibility.
89+ * The code annotated with ` @Internal ` are not parts of public API of the framework, therefore should
90+ not be used from outside of the framework.
91+ * The public API marked as ` @Experimental ` may be used at own risk; it can change at any time,
92+ and has no guarantee of API stability or backward-compatibility.
9093* The API annotated with ` @SPI ` is for those who intend to extend the framework,
9194or provide custom storage implementations.
9295
0 commit comments