flow-18.1.2
Transition to JFrog
Starting from this release, snapshots and vertx-vaadin-sockjs classifiers will be published on JFrog: https://mcollovati.jfrog.io/
NOTE: vertx-vaadin-sockjs classifiers will no more be published on maven central, so to use them a new repository must be added to your pom or gradle settings.
<repository>
<id>vertx-vaadin-public</id>
<url>https://mcollovati.jfrog.io/artifactory/vertx-vaadin-public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
repositories {
maven { url 'https://mcollovati.jfrog.io/artifactory/vertx-vaadin-public' }
}