Added bats and tests for gh-pages

This commit is contained in:
Marcin Grzejszczak
2019-03-28 18:58:57 +01:00
parent f8427d402b
commit 6cf9ed86ea
1184 changed files with 49494 additions and 316 deletions

View File

@@ -29,6 +29,22 @@
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<executions>
<execution><!-- Run our version calculation script -->
<id>Run tests</id>
<phase>test</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${basedir}/src/test/bash/run-bats.sh</executable>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>