summaryrefslogtreecommitdiffstats
path: root/uitest/pom.xml
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <tsuoanttila@users.noreply.github.com>2017-02-08 13:46:29 +0200
committerHenri Sara <henri.sara@gmail.com>2017-02-08 13:46:29 +0200
commit5d309dac6ff8de1d57d598f54a0c24327cf5ef5e (patch)
treeda8d3df6ac24b43262e0684f2e46e7ebe754c94a /uitest/pom.xml
parent84dc6c0b8876c8943a17b3f8ca8b06b680ddb0bb (diff)
downloadvaadin-framework-5d309dac6ff8de1d57d598f54a0c24327cf5ef5e.tar.gz
vaadin-framework-5d309dac6ff8de1d57d598f54a0c24327cf5ef5e.zip
Fix profiles in vaadin-root pom.xml (#8484)
Diffstat (limited to 'uitest/pom.xml')
-rw-r--r--uitest/pom.xml45
1 files changed, 18 insertions, 27 deletions
diff --git a/uitest/pom.xml b/uitest/pom.xml
index e88e46d2ac..d2abf4cd7c 100644
--- a/uitest/pom.xml
+++ b/uitest/pom.xml
@@ -311,25 +311,9 @@
</configuration>
</plugin>
<plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>animal-sniffer-maven-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- <plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<skip>${skip.uitest.failsafe}</skip>
- <includes>
- <include>**/AllTB3Tests.java</include>
- </includes>
<systemPropertyVariables>
<!-- Static path for screenshots pointing to submodule -->
<com.vaadin.testbench.screenshot.directory>${project.parent.basedir}/tests/screenshots</com.vaadin.testbench.screenshot.directory>
@@ -342,7 +326,12 @@
<categories.include>${categories.include}</categories.include>
<categories.exclude>${categories.exclude}</categories.exclude>
<useLocalWebDriver>${useLocalWebDriver}</useLocalWebDriver>
+ <!-- PhantomJS binary downloaded by phantomjs-maven-plugin -->
+<!-- <phantomjs.binary.path>${phantomjs.binary}</phantomjs.binary.path> -->
</systemPropertyVariables>
+ <includes>
+ <include>**/AllTB3Tests.java</include>
+ </includes>
</configuration>
<executions>
<execution>
@@ -353,6 +342,19 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>animal-sniffer-maven-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
</plugins>
<pluginManagement>
<plugins>
@@ -435,19 +437,8 @@
<plugins>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>integration-test</goal>
- <goal>verify</goal>
- </goals>
- </execution>
- </executions>
<configuration>
<groups>com.vaadin.testcategory.MeasurementTest</groups>
- <systemPropertyVariables>
- <phantomjs.binary.path>${phantomjs.binary}</phantomjs.binary.path>
- </systemPropertyVariables>
</configuration>
</plugin>
</plugins>