Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollovati committed Dec 31, 2023
1 parent d2c15c4 commit 8e7832e
Showing 1 changed file with 38 additions and 11 deletions.
49 changes: 38 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ Vertx-vaadin binaries are available on Maven Central and Bintray.

### Maven

Stable artifacts are published on Maven Central.

```xml
<dependency>
<groupId>com.github.mcollovati.vertx</groupId>
Expand All @@ -29,22 +31,47 @@ Vertx-vaadin binaries are available on Maven Central and Bintray.
</dependency>
```

For better compatibility with Flow client, specific `vaadin-flow-sockjs` artifacts targeting exact Vaadin versions
in use are published using the `vaadin-${vaadin.version}` classifier.

```xml
<dependency>
<groupId>com.github.mcollovati.vertx</groupId>
<artifactId>vaadin-flow-sockjs</artifactId>
<version>${vertx-vaadin-flow.version}</version>
<classifier>vaadin-${vaadin.version}</classifier>
</dependency>
```

Snapshot are currently published on [Repsy](https://repsy.io/)
Snapshots and `vaadin-flow-sockjs` classifiers are currently published on [Repsy](https://repsy.io/).

```xml
<repository>
<id>vertx-vaadin-snapshots</id>
<url>https://repo.repsy.io/mvn/mcollovati/vertx-vaadin-snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repositories>
<repository>
<id>vertx-vaadin</id>
<url>https://repo.repsy.io/mvn/mcollovati/vertx-vaadin</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>vertx-vaadin-snapshots</id>
<url>https://repo.repsy.io/mvn/mcollovati/vertx-vaadin-snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
```



## Compatibility matrix

| Vaadin version | Vert.x version | vertx-vaadin version | Status |
Expand Down

0 comments on commit 8e7832e

Please sign in to comment.