MattiH
8 years agoStaff
SoapUI 5.3 released!
SoapUI 5.3 is released today!
Additions include SwaggerHub improvements, OAuth improvements (most notably OAuth 1 support), Postman importer plugin and various bug fixes as well as valuable con...
Hello.
5.3.0 has been released but there's no maven plugin for it at: http://smartbearsoftware.com/repository/maven2/com/smartbear/soapui/soapui-maven-plugin
I can't use this 5.3.0 without the maven plugin - please make it available
Yeah a POM that works would be great too.
Here is the POM.xml that works for me:
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>AVL.System</groupId> <artifactId>API-Tests</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>API Tests</name> <url>http://maven.apache.org</url> <pluginRepositories> <pluginRepository> <id>SmartBearPluginRepository</id> <url>http://www.soapui.org/repository/maven2/</url> </pluginRepository> </pluginRepositories> <build> <plugins> <plugin> <groupId>com.smartbear.soapui</groupId> <artifactId>soapui-maven-plugin</artifactId> <version>5.3.0</version> <configuration> </configuration> <dependencies> <dependency> <groupId>com.jgoodies</groupId> <artifactId>forms</artifactId> <version>1.0.7</version> </dependency> </dependencies> <executions> <execution> <id>SoapUI Tests</id> <phase>test</phase> <goals> <goal>test</goal> </goals> <configuration> <globalProperties> <value>ENV=TEST</value> </globalProperties> <projectFile>src/test/SoapUI/AVL-APIs-v2.xml</projectFile> <outputFolder>${basedir}/target/SoapUI-Report</outputFolder> <junitReport>true</junitReport> <exportAll>true</exportAll> <printReport>true</printReport> <environment>DEV</environment> <testFailIgnore>false</testFailIgnore> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>