Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space FUNCTDEV and version SVC2025.3

...

  1. Add the build.parasoft.com Maven repository to your pom.xml:

    Code Block
    languagexml
    <repositories>
      <repository>
        <id>Parasoft</id>
        <url>http<url>https://build.parasoft.com/maven/</url>
      </repository>
    </repositories>

     

  2. Next, add the com.parasoft.api.rest.client dependency:

    Code Block
    languagexml
    <dependency>
      <groupId>com.parasoft.soavirt</groupId>
      <artifactId>com.parasoft.api.rest.client</artifactId>
      <version>9<version>2025.103.6<0</version>  <!-- should match version of your SOAtest server -->
    </dependency>

    The class com.parasoft.api.rest.client.ParasoftApiRestClient enables you to connect to the Parasoft SOAtest Server and invoke various operations, such as viewing and manipulating .tst files.

...