Skip to content

Latest commit

 

History

History
29 lines (27 loc) · 785 Bytes

README.md

File metadata and controls

29 lines (27 loc) · 785 Bytes

soatest-maven-plugin

Maven plugin for Parasoft SOAtest that wraps soatestcli.

See the Plugin Documentation

Include the SOAtest Maven Plugin in your project

  <build>
    <plugins>
      <plugin>
        <groupId>com.parasoft</groupId>
        <artifactId>soatest-maven-plugin</artifactId>
        <version>1.0.1</version>
        <executions>
          <execution>
            <id>soatest</id>
            <phase>validate</phase>
            <goals>
              <goal>soatest</goal>
            </goals>
            <configuration>
              <config>soatest.user://Example Configuration</config>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>