https://rapi.tools.ops.smartbear.io/maven2/ not available
I am trying to do some automation and while doing so I am trying to do a mvn clean install. I am getting below error: Failed to collect dependencies at com.smartbear.soapui:soapui-maven-plugin:jar:5.6.0: Failed to read artifact descriptor for com.smartbear.soapui:soapui-maven-plugin:jar:5.6.0: Could not transfer artifact com.smartbear.soapui:soapui-project:pom:5.6.0 from/to soapui-repo (https://rapi.tools.ops.smartbear.io/maven2😞 transfer failed for https://rapi.tools.ops.smartbear.io/maven2/com/smartbear/soapui/soapui-project/5.6.0/soapui-project-5.6.0.pom, status: 503 Service Temporarily Unavailable -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException When checked the nexus repository there is nohttps://rapi.tools.ops.smartbear.io/nexus/content/groups/public/maven2 folder. Could someone please help to create that structure. Thanks, Santanu635Views0likes3CommentsMissing maven depependency: soapui-project 5.4.0
Hi! I'm trying to use the maven dependencies for SoapUI 5.4.0, butunfortunately the parent pom (soapui-project) is missing in the Smartbear repository. http://smartbearsoftware.com/repository/maven2/com/smartbear/soapui/soapui-project/ Are there anyone who has the possibility to publish the artifacts from the build? Best regards /Johan1.1KViews0likes1CommentJenkins publishes 2x soap test results
My requirement is to run SOAPUI test cases via maven (POM), automate it's build using jenkins and generate a report of the test results. I have successfully done except the last part. I do get the test results but Jenkins returns 2x of them. I mean I have only one test case but Jenkins shows 2 test cases.2x test results Jenkins My POM file contains only one test case: <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.smartbear.samples</groupId> <artifactId>soapui-maven2-plugin</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>Maven 2 SoapUI Sample</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-pro-maven-plugin</artifactId> <version>4.6.1</version> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.6</version> </dependency> </dependencies> <executions> <execution> <phase>test</phase> <id>test1</id> <goals> <goal>test</goal> </goals> <configuration> <projectFile>simple-test-soapui-project.xml</projectFile> <junitReport>true</junitReport> <outputFolder>${basedir}/target/surefire-reports</outputFolder> <printReport>true</printReport> <exportAll>true</exportAll> <globalProperties> <value>ENV=DEV</value> </globalProperties> </configuration> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>2.1</version> </plugin> </plugins> </reporting> </project> and my surefire reports shows that I have only one test case: Surefire report containg just one test case How can I setup Jenkins to show only one test case in diagram? Thanks.1KViews0likes1CommentRunning SoapUI tests with Maven : Getting org.xml.sax.SAXParseException; Premature end of file excep
Hi, I am running my SoapUI tests with maven plugin : soapui-maven-plugin version 5.2.0 The test happens successfullly But in the console i see some ugly exceptions like below . Though this is not affecting the tests , I would like to know the reason for it and possibly remove this exception from the console logs . org.xml.sax.SAXParseException; Premature end of file. at org.apache.xerces.parsers.DOMParser.parse(Unknown Source) I have tried with the soapui-maven-plugin version 5.2.1 too and expereinced the same. Please let me know if any one has faced this issue and resolved it . Following is the full content of this exception. 16:32:12,690 ERROR [SoapUI] An error occurred [Premature end of file.], see error log for details org.xml.sax.SAXParseException; Premature end of file. at org.apache.xerces.parsers.DOMParser.parse(Unknown Source) at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source) at com.eviware.soapui.impl.wsdl.submit.filters.AbstractWssRequestFilter.getWssDocument(AbstractWssRequestFilter.java:63) at com.eviware.soapui.impl.wsdl.submit.filters.WssAuthenticationRequestFilter.setWssHeaders(WssAuthenticationRequestFilter.java:69) at com.eviware.soapui.impl.wsdl.endpoint.DefaultEndpointStrategy.copyToRequest(DefaultEndpointStrategy.java:277) at com.eviware.soapui.impl.wsdl.endpoint.DefaultEndpointStrategy.applyDefaultsToWsdlRequest(DefaultEndpointStrategy.java:215) at com.eviware.soapui.impl.wsdl.endpoint.DefaultEndpointStrategy.filterRequest(DefaultEndpointStrategy.java:196) at com.eviware.soapui.impl.wsdl.submit.filters.EndpointStrategyRequestFilter.filterRequest(EndpointStrategyRequestFilter.java:36) at com.eviware.soapui.impl.wsdl.submit.transports.http.HttpClientRequestTransport.sendRequest(HttpClientRequestTransport.java:172) at com.eviware.soapui.impl.wsdl.WsdlSubmit.run(WsdlSubmit.java:119) at com.eviware.soapui.impl.wsdl.WsdlSubmit.submitRequest(WsdlSubmit.java:79) at com.eviware.soapui.impl.rest.RestRequest.submit(RestRequest.java:192) at com.eviware.soapui.impl.wsdl.teststeps.RestTestRequestStep.run(RestTestRequestStep.java:794) at com.eviware.soapui.impl.wsdl.support.AbstractTestCaseRunner.runTestStep(AbstractTestCaseRunner.java:211) at com.eviware.soapui.impl.wsdl.testcase.WsdlTestCaseRunner.runCurrentTestStep(WsdlTestCaseRunner.java:47) at com.eviware.soapui.impl.wsdl.support.AbstractTestCaseRunner.internalRun(AbstractTestCaseRunner.java:138) at com.eviware.soapui.impl.wsdl.support.AbstractTestCaseRunner.internalRun(AbstractTestCaseRunner.java:46) at com.eviware.soapui.impl.wsdl.support.AbstractTestRunner.run(AbstractTestRunner.java:129) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at java.lang.Thread.run(Thread.java:745) Thanks , Musaffir1.7KViews0likes2CommentsMaven Build results in failure when the assertion fail
Hi , I am running my tests using the soapui-maven plugin version - 5.2.1 I am with the free version of soapui I have delibrately added an assertion in my request present in the test case Observed that when this assertion fails, it results in making the maven build as 'Failure' The maven build sould become Success here , tough there is a test case failure due to assertion failure Is it a known issue , can any one provide some lights here .. POM file is attached here Thanks & Warm Regards MusaffirSolved2.9KViews0likes1CommentSoapUI Maven Plugin v5.2.2
Hello, Disclaimer: This is a cross-post fromhttp://community.smartbear.com/t5/SoapUI-Open-Source/soapui-maven-plugin-5-2-0-not-published-to-SmartBear-repository/td-p/102327 which does not seem to get any more attention from SmartBear. The issue: The latest version of SoapUI Maven Plugin published to maven (and also smartbear maven repo,http://smartbearsoftware.com/repository/maven2/com/smartbear/soapui/soapui-maven-plugin/) is 5.1.3. This version does not support the -reallyimportant- JsonPath assertion. From the SoapUI github repository it can be seen that version 5.2.2 is ready, and can be built. It is understood that SmartBear tries to promote and give more support to SoapUI pro edition and the readyApi suite, but please, do not fail your longtime users and show some respect and support to the community. There projects that due to their size cannot be migrated to readyApi at the moment while need the JsonPath assertions. Don't get my attitudewrong, but try to understand. It is really bad to discover broken functionallity when your CI server reports no errors, since it is using a maven plugin thatsimply ignores this type of assertion.Solved5KViews3likes5CommentsHow can I set testsuite property in maven like we set project property in projectProperty tag?
Hi, I want to set testsuite level property in maven something like, <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>src.main.resources</groupId> <artifactId>soapui-maven2-plugin</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>Maven 2 soapUI Sample</name> <url>http://maven.apache.org</url> <pluginRepositories> <pluginRepository> <id>smartbear-sweden-plugin-repository</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.1.0</version> <configuration> <projectFile>Offline-soapui-project.xml</projectFile> <junitReport>true</junitReport> <outputFolder>${project.build.directory}/reports</outputFolder> <testSuite>SmokeTestSuite</testSuite> <testSuiteProperties> <testSuiteProperty>serviceEndpoint=${serviceEndpoint}</testSuiteProperty> </testSuiteProperties> </configuration> <executions> <execution> <phase>test</phase> <goals> <goal>test</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project> so that when I run soapui project from command line and pass testsuite property value as mvn - test -DserviceEndpoint=http://some_url it should set testsuite property in the soapui project. Any help would be greatly appreciated. ThanksSolved2.5KViews0likes2Commentssoapui-maven-plugin 5.2.0 not published to SmartBear repository
Hello, SoapUI 5.2.0 has been pushed to the SmartBear maven repository, but the related maven plugin has not been published there. Same is true for the soapui-project pom. Any chance that theywill be uploadedin the near future? :-) Kind regards MarcusSolved10KViews1like12CommentsClass Missing - org/apache/log4j/Layout
Hi, I am trying to execute soap ui test from Jenkins with maven commnd. But I am getting this error. [ERROR] Failed to execute goal com.smartbear.soapui:soapui-maven-plugin:5.2.1:test (default-cli) on project OrionAPITest: Execution default-cli of goal com.smartbear.soapui:soapui-maven-plugin:5.2.1:test failed: A required class was missing while executing com.smartbear.soapui:soapui-maven-plugin:5.2.1:test: org/apache/log4j/Layout My pom.xml <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-jcl</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>org.ops4j.pax.logging</groupId> <artifactId>pax-logging-api</artifactId> <version>1.7.2</version> </dependency> <dependency> <groupId>org.ops4j.pax.logging</groupId> <artifactId>pax-logging-service</artifactId> <version>1.7.2</version> </dependency> Does anybody has any idea about this error?1.1KViews0likes0CommentsFailed to create JUnitReportCollector class
Hi All, I am trying to run a build from Jenkins to create a customised JUnit style report. Attached is my pom.xml. I am using com.github.redfish4ktc.soapui:maven-soapui-extension-plugin:4.5.1.4 plugin to generate customised report, i have used the following property in soapuiProperties: <property> <name>soapui.junit.reportCollector</name> <value>test.soapui.CustomJunitReportGenerator</value> </property> This pom.xml works perfectly fine in Maven build in eclipse and generates the desired report, but gives the following exception while building from jenkins and hence i end up with the default JUnit style report:womansad: I get the following exception in jenkins build: WARN org.ktc.soapui.maven.extension.impl.report.ReportCollectorFactory - Failed to create JUnitReportCollector class [C:\api_automation11\src\test\soapui\CustomJunitReportGenerator] so use the default one; error cause: java.lang.ClassNotFoundException: C:\api_automation11\src\test\soapui\CustomJunitReportGenerator mvn goal: mvn clean install com.github.redfish4ktc.soapui:maven-soapui-extension-plugin:test What am i doing wrong? :womanfrustrated:767Views0likes0Comments