| | <?xml version="1.0" encoding="UTF-8"?> |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| | <modelVersion>4.0.0</modelVersion> |
| | <parent> |
| | <groupId>org.apache.bookkeeper.tests</groupId> |
| | <artifactId>tests-parent</artifactId> |
| | <version>4.18.0-SNAPSHOT</version> |
| | </parent> |
| |
|
| | <artifactId>scripts</artifactId> |
| | <packaging>jar</packaging> |
| | <name>Apache BookKeeper :: Tests :: Bash Scripts Test</name> |
| |
|
| | <dependencies> |
| | </dependencies> |
| |
|
| | <build> |
| | <plugins> |
| | <plugin> |
| | <groupId>com.googlecode.maven-download-plugin</groupId> |
| | <artifactId>download-maven-plugin</artifactId> |
| | <executions> |
| | <execution> |
| | <id>install-shunit2</id> |
| | <phase>integration-test</phase> |
| | <goals> |
| | <goal>wget</goal> |
| | </goals> |
| | <configuration> |
| | <url>https://github.com/kward/shunit2/archive/v2.1.7.zip</url> |
| | <unpack>true</unpack> |
| | <outputDirectory>${project.basedir}/target/lib</outputDirectory> |
| | <skip>${skipTests}</skip> |
| | </configuration> |
| | </execution> |
| | </executions> |
| | </plugin> |
| | <plugin> |
| | <groupId>org.codehaus.mojo</groupId> |
| | <artifactId>exec-maven-plugin</artifactId> |
| | <version>${exec-maven-plugin.version}</version> |
| | <executions> |
| | <execution> |
| | <id>bash-tests</id> |
| | <phase>integration-test</phase> |
| | <goals> |
| | <goal>exec</goal> |
| | </goals> |
| | <configuration> |
| | <skip>${skipTests}</skip> |
| | <workingDirectory>${project.basedir}/src/test/bash</workingDirectory> |
| | <executable>${project.basedir}/src/test/bash/bk_test.sh</executable> |
| | </configuration> |
| | </execution> |
| | </executions> |
| | </plugin> |
| | </plugins> |
| | </build> |
| | </project> |
| |
|