You can download vaadin-cdi-1.0.0.alpha1.jar in this page.
Apache License version 2.0
vaadin-cdi-1.0.0.alpha1.jar file has the following types.
META-INF/MANIFEST.MF META-INF/beans.xml META-INF/maven/com.vaadin/vaadin-cdi/pom.properties META-INF/maven/com.vaadin/vaadin-cdi/pom.xml META-INF/services/javax.enterprise.inject.spi.Extension com.vaadin.cdi.CDIUI.class com.vaadin.cdi.CDIUIProvider.class com.vaadin.cdi.CDIView.class com.vaadin.cdi.CDIViewProvider.class com.vaadin.cdi.UIScoped.class com.vaadin.cdi.URLMapping.class com.vaadin.cdi.access.AccessControl.class com.vaadin.cdi.access.JaasAccessControl.class com.vaadin.cdi.internal.AnnotationUtil.class com.vaadin.cdi.internal.BeanStoreContainer.class com.vaadin.cdi.internal.ContextDeployer.class com.vaadin.cdi.internal.Conventions.class com.vaadin.cdi.internal.InconsistentDeploymentException.class com.vaadin.cdi.internal.UIBean.class com.vaadin.cdi.internal.UIBeanStore.class com.vaadin.cdi.internal.UIScopedContext.class com.vaadin.cdi.internal.VaadinExtension.class
vaadin-cdi-1.0.0.alpha1.pom file content.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.vaadin</groupId> <artifactId>vaadin-cdi</artifactId> <version>1.0.0.alpha1</version> <packaging>jar</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <vaadin.version>7.0.2</vaadin.version> </properties> <distributionManagement> <snapshotRepository> <id>vaadin-snapshots</id> <name>Vaadin snapshot repository</name> <url>http://oss.sonatype.org/content/repositories/vaadin-snapshots/</url> </snapshotRepository> </distributionManagement> <name>vaadin-cdi</name> <url>http://vaadin.com</url> <description>Provides CDI integration for Vaadin projects</description> <organization> <name>Vaadin Ltd</name> <url>http://vaadin.com</url> </organization> <scm> <url>https://github.com/vaadin/cdi</url> <connection>git:https://github.com/vaadin/cdi.git</connection> <developerConnection>git:https://github.com/vaadin/cdi.git</developerConnection> </scm> <issueManagement> <system>trac</system> <url>http://dev.vaadin.com/</url> </issueManagement> <developers> <developer> <name>Peter Lehto</name> </developer> <developer> <name>Adam Bien</name> </developer> <developer> <name>Henri Sara</name> </developer> </developers> <licenses> <license> <name>Apache License version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <dependencyManagement> <dependencies> <dependency> <groupId>org.jboss.arquillian</groupId> <artifactId>arquillian-bom</artifactId> <version>1.0.3.Final</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- Compile dependencies --> <!-- vaadin core --> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-server</artifactId> <version>${vaadin.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-shared</artifactId> <version>${vaadin.version}</version> <scope>compile</scope> </dependency> <!-- Test dependencies --> <!-- Embedded TomEE --> <dependency> <groupId>org.apache.openejb</groupId> <artifactId>apache-tomee</artifactId> <version>1.5.0</version> <classifier>plus</classifier> <type>zip</type> <scope>test</scope> </dependency> <!-- Arquillian --> <dependency> <groupId>org.jboss.arquillian.junit</groupId> <artifactId>arquillian-junit-container</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.openejb</groupId> <artifactId>arquillian-tomee-embedded</artifactId> <version>1.5.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.shrinkwrap.resolver</groupId> <artifactId>shrinkwrap-resolver-impl-maven</artifactId> <scope>test</scope> </dependency> <!-- Graphene --> <dependency> <groupId>org.jboss.arquillian.graphene</groupId> <artifactId>arquillian-graphene</artifactId> <type>pom</type> <version>2.0.0.Alpha2</version> <scope>test</scope> </dependency> <!-- Unit testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> <!-- vaadin dependencies needed for integration testing --> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-theme-compiler</artifactId> <version>${vaadin.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-client-compiled</artifactId> <version>${vaadin.version}</version> <scope>test</scope> </dependency> <!-- Java EE 6 API. Must be last to be overridden by tomee for the test phase --> <dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> <version>6.0</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <configuration> <excludeResources>true</excludeResources> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.13</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.5</version> <configuration> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.10</version> <configuration> <enableRulesSummary>false</enableRulesSummary> <includeTestSourceDirectory>true</includeTestSourceDirectory> <configLocation>checkstyle/vaadin-checkstyle.xml</configLocation> <violationSeverity>error</violationSeverity> <headerLocation>checkstyle/header</headerLocation> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <version>1.0-alpha-2</version> <executions> <execution> <phase>initialize</phase> <goals> <goal>read-project-properties</goal> </goals> <configuration> <files> <file>${gpg.passphrase.file}</file> </files> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-cdi</artifactId> <version>1.0.0.alpha1</version> </dependency>
If you think the following vaadin-cdi-1.0.0.alpha1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download vaadin-cdi-1.0.0.alpha1.jar file