where is Vaadin cdi Version 1.0 alpha download

Hello everyone ! Who can tell me. where is Vaadin cdi Version 1.0 alpha download

Hey

in a maven project you just have to add this repository and the dependency:


       <repository>
          <id>vaadin-snapshots</id>
          <name>Vaadin snapshot repository</name>
          <url>http://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
          <releases>
          <enabled>false</enabled>
          </releases>
          <snapshots>
          <enabled>true</enabled>
          </snapshots>
       </repository>

       <dependency>
          <groupId>com.vaadin</groupId>
          <artifactId>vaadin-cdi</artifactId>
         <version>1.0-SNAPSHOT</version>
      </dependency>

if you are looking for the jar:
https://oss.sonatype.org/content/repositories/vaadin-snapshots/com/vaadin/vaadin-cdi/1.0-SNAPSHOT/

here you can find a great test project :wink:
https://github.com/vaadin/cdi/tree/master/vaadin-cdi-example

We made a pre-alpha build last week that was in limited distribution, essentially the same as the snapshot. Based on feedback received, I’ll make some small changes and try to get the alpha1 out today.

There will be one clear user-visible change in it compared to the current snapshot: moving of CDIUIProvider from com.vaadin.cdi.internal to com.vaadin.cdi . This only affects users who have manually configured servlets, though. Automatic deployment of VaadinServlet with CDIUIProvider still works as before when no servlets are configured by the application.