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

...

Info
iconfalse
titleBuilding with Maven?

If you’re building your Java project with Apache Maven, you can add the following to your project's pom.xml:

Code Block
<project>
  ...
  <dependencies>
    <dependency>
		<groupId>com.parasoft.soavirt</groupId>
		<artifactId>com.parasoft.api</artifactId>
		<version>2020<version>2025.13.0</version>  <!-- should match product version -->
    </dependency>   
  </dependencies>   ...
<repositories>
    <repository>
		<id>ParasoftMavenPublic</id>
		<name>Parasoft Public Repository</name>
		<url>http<url>https://build.parasoft.com/maven/</url>
    </repository>
  </repositories>
  ...
</project>

...