diff options
author | Henri Sara <hesara@vaadin.com> | 2016-05-03 17:03:10 +0300 |
---|---|---|
committer | Ilia Motornyi <elmot@vaadin.com> | 2016-06-23 11:37:44 +0000 |
commit | 358e9ef5b47cd8329cf8a0a1f074fdd2cd7624ed (patch) | |
tree | be4097b0ec106da980563ff8cf821ac695ff53f0 | |
parent | 29c9d08ddc5193769035da639b8a8628a21cfa28 (diff) | |
download | vaadin-framework-358e9ef5b47cd8329cf8a0a1f074fdd2cd7624ed.tar.gz vaadin-framework-358e9ef5b47cd8329cf8a0a1f074fdd2cd7624ed.zip |
Fix classpath order for integration tests
Test classes need to come first because of how TB3TestLocator is
implemented.
Change-Id: I08e3e418f25c800a951bd199d47a1dfa5f8ca5d8
-rw-r--r-- | uitest/integration_tests.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/uitest/integration_tests.xml b/uitest/integration_tests.xml index c69e3f123a..ad03f57d8e 100644 --- a/uitest/integration_tests.xml +++ b/uitest/integration_tests.xml @@ -40,8 +40,9 @@ <ivy:resolve file="ivy.xml" conf="build, build-provided" /> <ivy:cachepath pathid="classpath.tb3.lib" conf="build, build-provided" /> <path id="classpath.tb3"> + <path location="target/test-classes" /> <path refid="classpath.tb3.lib" /> - <path location="result/classes" /> + <path location="target/classes" /> </path> <!-- Upload war to deploy to ssh host --> |