Skip to content

flow-18.1.2

Compare
Choose a tag to compare
@mcollovati mcollovati released this 21 Feb 11:57
· 85 commits to master since this release

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' }
}