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, Santanu635Views0likes3CommentsHow do I properly define an example for a nullable property in OpenAPI 3?
I am using OpenAPI and openapi-generator-maven-plugin with Spring Boot. I'm trying to create an example object in my response. I've followed the suggestions of several different web pages, especially this one: https://swagger.io/docs/specification/adding-examples/ But no matter what I try, I can't get the example data to show up correctly. Here the object that should be in a request: Period: type: object required: - startDate - endDate properties: startDate: type: string format: date nullable: true example: "2021-01-01" endDate: type: string format: date nullable: true example: "2030-01-01" CreateInstancesRequest: type: object required: - id properties: id: $ref: '#/components/schemas/Id' period: allOf: - $ref: '#/components/schemas/Period' But I get not what I want: I expect something like this: { "id": "some-id", "period": { "endDate": "2020-01-01", "startDate": "2022-01-01" } } But maybe I am wrong because generated java code for the Period class: I thinkpresentproperty from actual example came fromorg.openapitools.jackson.nullable.JsonNullableclass. Can you help me, please?Can I pass the floating license as an Maven Argument??
Can I pass the floating license as an Maven Argument?? Executing Maven: -B -f /apps/jenkins-agent/workspace...../pom.xml clean test -e -DSuiteName=ITRN3-SmokeTest-Cycle1 -e LICENSE_SERVER=xx.xx.xxx.xxx:xxxx did not workSolved1.2KViews0likes1CommentHow can I include dependencies from an external jar file into a groovy script test step
Hello Community, I am using the ready-api maven plugin. I have my dependency in the pom.xml. The depedency is being downloaded. My question is how can I use the classes in this jar file in a groovy test step. I have tried using an import statement, but the script does not know where to locate the jar. As a side note, we do not have admin rights on our local machines so I cannot install the jar file to the soapUi install directory. So, I need a way to tell SoapUi how to find the Jar file. I pulled my code out into intelliJ and it works, but I cannot get it to work inside of soapUi.Solved3.7KViews0likes5CommentsSuppressing info logging when using a maven plugin
Hello, I am using the ready-api maven plugin to run tests. I have a composite project. I am trying to supress the logging and output file creation because it is filling up the filesystem on our jenkins build slave. <logger name="com.smartbear.ready.cmd.runner.pro.SoapUIProTestCaseRunner" level="warn" additivity="false"> <appender-ref ref="STDOUT"/> </logger> Here is what I have tried, none of which seems to supress the info logging: - logback.xml in src/main/java/resources <- set the log level to warn for the SoapUIProTestCaseRunner - logback.xml in src/test/java/resources <- set the log level to warn for the SoapUIProTestCaseRunner - soapui-log4j.xml in src/main/java/resources <- set the log level to warn for the SoapUIProTestCaseRunner - soapui-log4j.xml in src/test/java/resources <- set the log level to warn for the SoapUIProTestCaseRunner I am wondering why the project is not picking up the logging level when I build it. We do not have the acess to SOAP_UI home directory to install the logging configuration there. So, that is not an option for us.Solved4.4KViews0likes9CommentsReady api maven plugin - how to execute all suites in a composite project
I am trying to run all of the test suites in my ready-api project using the maven plugin. If I do not specify a test suite directly, I get the following stack trace. java.lang.ClassNotFoundException: com.sun.jdi.request.EventRequest at org.codehaus.plexus.classworlds.strategy.SelfFirstStrategy.loadClass(SelfFirstStrategy.java:50) at org.codehaus.plexus.classworlds.realm.ClassRealm.unsynchronizedLoadClass(ClassRealm.java:271) at org.codehaus.plexus.classworlds.realm.ClassRealm.loadClass(ClassRealm.java:247) at org.codehaus.plexus.classworlds.realm.ClassRealm.loadClass(ClassRealm.java:239) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:264) at com.eviware.soapui.tools.DebugSupport.<clinit>(DebugSupport.java:19) at com.eviware.soapui.impl.wsdl.teststeps.registry.GroovyScriptStepFactory.buildTestStep(GroovyScriptStepFactory.java:38) at com.eviware.soapui.impl.wsdl.testcase.WsdlTestCase.createTestStepFromConfig(WsdlTestCase.java:390) at com.eviware.soapui.impl.wsdl.testcase.WsdlTestCase.<init>(WsdlTestCase.java:162) at com.eviware.soapui.impl.wsdl.WsdlTestCasePro.<init>(WsdlTestCasePro.java:64) at com.eviware.soapui.impl.wsdl.WsdlTestSuitePro.buildTestCase(WsdlTestSuitePro.java:85) at com.eviware.soapui.impl.wsdl.WsdlTestSuitePro.buildTestCase(WsdlTestSuitePro.java:1) at com.eviware.soapui.impl.wsdl.WsdlTestSuite.<init>(WsdlTestSuite.java:115) at com.eviware.soapui.impl.wsdl.WsdlTestSuitePro.<init>(WsdlTestSuitePro.java:48) at com.eviware.soapui.impl.wsdl.WsdlProjectPro.buildTestSuite(WsdlProjectPro.java:1146) at com.eviware.soapui.impl.wsdl.WsdlProjectPro.loadProject(WsdlProjectPro.java:416) at com.eviware.soapui.impl.wsdl.WsdlProject.<init>(WsdlProject.java:284) at com.eviware.soapui.impl.wsdl.WsdlProject.<init>(WsdlProject.java:263) at com.eviware.soapui.impl.wsdl.WsdlProjectPro.<init>(WsdlProjectPro.java:193) at com.eviware.soapui.impl.wsdl.WsdlProjectProFactory.createNew(WsdlProjectProFactory.java:112) at com.eviware.soapui.impl.wsdl.WsdlProjectProFactory.createNew(WsdlProjectProFactory.java:1) at com.smartbear.ready.cmd.runner.AbstractSoapUIRunner.getWsdlProject(AbstractSoapUIRunner.java:385) at com.smartbear.ready.cmd.runner.SoapUITestCaseRunner.runRunner(SoapUITestCaseRunner.java:325) at com.smartbear.ready.cmd.runner.pro.SoapUIProTestCaseRunner.runRunner(SoapUIProTestCaseRunner.java:97) at com.smartbear.ready.cmd.runner.AbstractSoapUIRunner.run(AbstractSoapUIRunner.java:264) at com.eviware.soapui.maven2.TestMojo.execute(TestMojo.java:152)Solved2.8KViews0likes7CommentsReadyApi maven plugin tips
I was sent this awesome link on maven builds and wanted to share: What I did was use ReadyApi to create a sample composite project and then crafted a pom file for it similar to the one in this example. I have attached the zip file, if you want to download it and play with it. https://support.smartbear.com/readyapi/docs/integrations/maven/example.html Maven tips in general. https://support.smartbear.com/readyapi/docs/integrations/maven/index.html986Views2likes1CommentExecuting ReadyAPi multiple testSuite within a project with maven and Jenkins?
Hi , I have a Ready API's [Soap UI Pro] project configuredthrough maven to run on jenkins now the issue i can execute either a testSuite or entire project So is there any way for executing multiple testSuite through maven ? <testSuite>${testSuite}</testSuite> Regards, Raviraj.Solved2.5KViews0likes3CommentsMissing 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.1KViews0likes1CommentReadyAPI Maven plugin and proxy setup
Hi, I try to configurethe readyAPI maven plugin in order for my tests to use my corporate proxy when sending queries. No issue with the UI by using the Preferences/Proxy menu. But I would like to do the same with the maven plugin. I tried to setup some properties by using the readyApiProperties elements in the plugin configuration but without success. Is there a way to do this? Please note thatI am using the maven plugin on a linux machine in headless mode so do not have access to any UI. Thanks for your help William695Views0likes0Comments