Hamza_amami
6 years agoOccasional Contributor
Need dependency for integrating ReadyApi with Java Maven
Hello,
I've done a lot of dev with SoapUi (open source version) with this dependency
<dependency> <groupId>com.smartbear.soapui</groupId> <artifactId>soapui</artifactId> <version>5.0.0</version> <exclusions> <exclusion> <groupId>javafx</groupId> <artifactId>jfxrt</artifactId> </exclusion> <exclusion> <artifactId>servlet-api</artifactId> <groupId>jetty</groupId> </exclusion> <exclusion> <artifactId>commons-codec</artifactId> <groupId>commons-codec</groupId> </exclusion> <exclusion> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> </exclusion> </exclusions> </dependency>
Now that we bought SoapUi Pro, some testSteps can't be executed in our Java code (I guess because these testStep are only compatible with SoapUi OpenSource testRunner)
Is there a way to keep the same code source that we have and integrate the Pro feature, like changing only the dependency ?
Thanks