Polish "Remove default Web UI from Initializr library"

Closes gh-860
This commit is contained in:
Stephane Nicoll
2019-03-19 17:44:43 +00:00
parent 7e479e8297
commit e527172282
6 changed files with 4 additions and 70 deletions

View File

@@ -114,16 +114,6 @@
<artifactId>jsonassert</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-firefox-driver</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-support</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
@@ -176,37 +166,6 @@
</plugins>
</build>
</profile>
<profile>
<id>smokeTests</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<id>integration-test</id>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<systemProperties>
<smoke.test>true</smoke.test>
</systemProperties>
<includes>
<include>**/*SmokeTests.java</include>
</includes>
<excludes>
<exclude>**/Abstract*.java</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>