diff options
author | Artur <artur@vaadin.com> | 2016-12-22 10:24:01 +0200 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2016-12-22 10:24:01 +0200 |
commit | 67222eb13b85d5b479e83c2449f64eb762f41d01 (patch) | |
tree | f453127975be34ea11a95182d38702d507ddb22c /testbench-api/pom.xml | |
parent | c72373114c53c6eb8fe68a846e20e330977a9677 (diff) | |
download | vaadin-framework-67222eb13b85d5b479e83c2449f64eb762f41d01.tar.gz vaadin-framework-67222eb13b85d5b479e83c2449f64eb762f41d01.zip |
Include Framework Element API for TestBench in the project (#8014)
This makes it possible to use the latest Element classes in the
framework tests and to simplify the build process.
The license for the included element classes are changed to Apache2
Diffstat (limited to 'testbench-api/pom.xml')
-rw-r--r-- | testbench-api/pom.xml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/testbench-api/pom.xml b/testbench-api/pom.xml new file mode 100644 index 0000000000..c7cc8ccfe4 --- /dev/null +++ b/testbench-api/pom.xml @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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> + <parent> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-root</artifactId> + <version>8.0-SNAPSHOT</version> + </parent> + <artifactId>vaadin-testbench-api</artifactId> + <name>vaadin-testbench-api</name> + <packaging>jar</packaging> + + <url>https://vaadin.com/</url> + <description>Vaadin Framework Element API for TestBench</description> + + <properties> + <testbench.core.version>5.0.0.alpha2</testbench.core.version> + </properties> + + <dependencies> + <dependency> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-testbench-core</artifactId> + <version>${testbench.core.version}</version> + </dependency> + </dependencies> + + <repositories> + <repository> + <id>vaadin-addons</id> + <url>http://maven.vaadin.com/vaadin-addons</url> + </repository> + </repositories> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>checkstyle</goal> + </goals> + <phase>process-sources</phase> + </execution> + </executions> + </plugin> + + </plugins> + </build> + +</project> |