-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,13 +28,13 @@ To start using Xodus, define dependencies: | |
<dependency> | ||
<groupId>org.jetbrains.xodus</groupId> | ||
<artifactId>xodus-openAPI</artifactId> | ||
<version>1.3.0</version> | ||
<version>1.3.91</version> | ||
</dependency> | ||
``` | ||
```groovy | ||
// in Gradle project | ||
dependencies { | ||
compile 'org.jetbrains.xodus:xodus-openAPI:1.3.0' | ||
compile 'org.jetbrains.xodus:xodus-openAPI:1.3.91' | ||
} | ||
``` | ||
Read more about [managing dependencies](https://github.com/JetBrains/xodus/wiki/Managing-Dependencies). | ||
|
@@ -43,7 +43,7 @@ There are three different ways to deal with data, which results in three differe | |
|
||
### Environments | ||
|
||
Add dependency on `org.jetbrains.xodus:xodus-environment:1.3.0`. | ||
Add dependency on `org.jetbrains.xodus:xodus-environment:1.3.91`. | ||
|
||
```java | ||
try (Environment env = Environments.newInstance("/home/me/.myAppData")) { | ||
|
@@ -55,7 +55,7 @@ try (Environment env = Environments.newInstance("/home/me/.myAppData")) { | |
``` | ||
### Entity Stores | ||
|
||
Add dependency on `org.jetbrains.xodus:xodus-entity-store:1.3.0`. | ||
Add dependency on `org.jetbrains.xodus:xodus-entity-store:1.3.91`. | ||
|
||
```java | ||
try (PersistentEntityStore entityStore = PersistentEntityStores.newInstance("/home/me/.myAppData")) { | ||
|
@@ -67,7 +67,7 @@ try (PersistentEntityStore entityStore = PersistentEntityStores.newInstance("/ho | |
``` | ||
### Virtual File Systems | ||
|
||
Add dependency on `org.jetbrains.xodus:xodus-vfs:1.3.0`. | ||
Add dependency on `org.jetbrains.xodus:xodus-vfs:1.3.91`. | ||
|
||
```java | ||
try (Environment env = Environments.newInstance("/home/me/.myAppData")) { | ||
|
@@ -102,4 +102,3 @@ To assemble JARs and skip running tests, run: | |
- [EntityStore browser](https://github.com/JetBrains/xodus-entity-browser) | ||
- [Check out the latest builds](https://teamcity.jetbrains.com/viewType.html?buildTypeId=Xodus_Build) | ||
- [Observe development in Upsource](https://upsource.jetbrains.com/Xodus/view) | ||
- <a href="mailto:[email protected]">Ask questions by e-mail</a> |