diff options
author | Henri Sara <henri.sara@gmail.com> | 2017-02-16 08:56:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-16 08:56:32 +0200 |
commit | 7f1cfd03d5b55f41ea911fcd53ce6fd168517cff (patch) | |
tree | 09cc623eef4889bd2194959b6c77dc75ab21cce2 /uitest/pom.xml | |
parent | 888cae67dbaae27d2b505304901d2e387ca6bfaa (diff) | |
download | vaadin-framework-7f1cfd03d5b55f41ea911fcd53ce6fd168517cff.tar.gz vaadin-framework-7f1cfd03d5b55f41ea911fcd53ce6fd168517cff.zip |
Eliminate module uitest-common (#8583)
The use of the module in the test project was removed earlier, and
eliminating the module permits simpler and more reliable builds as
it was not deployed.
The classes that were in uitest-common are now in uitest.
Diffstat (limited to 'uitest/pom.xml')
-rw-r--r-- | uitest/pom.xml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/uitest/pom.xml b/uitest/pom.xml index d2abf4cd7c..5473a9d2f8 100644 --- a/uitest/pom.xml +++ b/uitest/pom.xml @@ -185,13 +185,6 @@ </dependency> <dependency> - <groupId>${project.groupId}</groupId> - <artifactId>vaadin-uitest-common</artifactId> - <version>${project.version}</version> - <scope>test</scope> - </dependency> - - <dependency> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId> </dependency> @@ -228,6 +221,14 @@ </exclusion> </exclusions> </dependency> + + <dependency> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-testbench-api</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> + </dependencies> <build> |