ContributionsMost RecentMost LikesSolutionsRe: SoapUI version 5.4.0 integrated with maven I can execute clean/compile the source code from release-5.4.0 branch. Then, I can run SoapUi.main(). However, during making package of SoapUI installer, it shows the following message. [INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building SoapUI installer 5.4.0 [INFO] ------------------------------------------------------------------------ [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 0.450 s [INFO] Finished at: 2017-12-27T13:37:57-08:00 [INFO] Final Memory: 9M/245M [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal on project soapui-installer: Could not resolve dependencies for project com.smartbear.soapui:soapui-installer:jar:5.4.0: Failed to collect dependencies at com.smartbear.soapui:soapui:jar:5.4.0: Failed to read artifact descriptor for com.smartbear.soapui:soapui:jar:5.4.0: Failure to find com.smartbear.soapui:soapui-project:pom:5.4.0 in http://www.soapui.org/repository/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of smartbear-sweden-repository has elapsed or updates are forced -> [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 Re: my soap ui failed to open work space and default xml has all NULLS. I am wondering why this happened Did you see any error during closing soapui? if you don't care about your project, you can create empty project from right click menu. The workspace xml file is just a space to store the link of your soapui project. <?xml version="1.0" encoding="UTF-8"?> <con:soapui-workspace name="Projects" soapui-version="5.2.1" xmlns:con="http://eviware.com/soapui/config"> <con:settings/> ... </con:soapui-workspace> Re: soap ui groovy debug 1 if you want to debug the groovy script inside, like add one groovy script as test step. Answer: you can add log.info to groovy script and then check output in log 2 if you want to debug one function which is developed by groovy, it means pure groovy codes, like read the strings from text file Answer: you can create a groovy project in intellij and Eclipse to debug it. Re: How to compile the code to export SoapUI-5.2.1.exe? I just tried to compile the source code of the whole soapui project. But, after exporting the files, I cannot find SoapUI-5.2.1.exe in SOAPUI_HOME/bin/. I tried to copy exe file (from SoapUI folder in another PC after installing it) to SOAPUI_HOME/bin/. It does work. How to compile the code to export SoapUI-5.2.1.exe? I found soapui cannot be run from soapui.bat file. I have to copy SoapUI-5.2.1.exe and then double click it. Thank you for any suggestions in advance. Re: Docker Image for SoapUI 5.2.1 Could I know it is windows image or linux image? I guess java/soapui are already installed into this docker. Thanks. Re: Customization - Drop down / ComboBox for Property Value How to open this tab? As I know, if you want to change the value from this kind of Drop Down/ComboBox, you need to change it in source code. It is swing. Re: Set current date from setup script try to import java package, like import java.util.TimeZone; Re: soapUI startup crash 11:25:51,869 INFO [SoapUI] Used java version: 1.7.0_55 Could you try Java 8? which osx are you using now? Cannot compile the source code of branch "release-5.3.0" https://github.com/SmartBear/soapui/branches Tried to compile release-5.3.0 branch. But, it failed. Then I had to modify pom.xml in soapui folder. 5.3.0--->5.2.1 <!-- In-app analytics --> <dependency> <groupId>com.smartbear.utils.analytics</groupId> <artifactId>analytics-core</artifactId> <version>5.2.1</version> </dependency> <dependency> <groupId>com.smartbear.utils.analytics</groupId> <artifactId>out-app-analytics-provider</artifactId> <version>5.2.1</version> </dependency> any suggestion?