Forum Discussion
Specifically, I am looking to see if this section can be faster or even skipped entirely since nothing is being loaded:
13:06:29,431 INFO [DefaultSoapUICore] initialized soapui-settings from [C:\soapui-settings.xml]
13:06:34,922 INFO [PluginManager] 0 plugins loaded in 0 ms
13:06:34,922 INFO [DefaultSoapUICore] All plugins loaded
5 seconds
Thanks
- clarkewerton6 years agoNew Contributor
Hi,
Is there anyone who can answer this question? I'm looking forward to have the solution too.
Thanks.
- nmrao6 years agoChampion Level 3You mean, you don't want to load any plugins and you think that process is taking time?
By the way, what plugins you have currently?- clarkewerton6 years agoNew Contributor
Hi,
To be honest, I think I've no plugin configured on my POM.xml. Follow bellow my POM.xml:
"<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>br.com.wcclark</groupId>
<artifactId>ProjetoAutomacaoSOAPUIDemo</artifactId>
<version>0.0.1-SNAPSHOT</version><repositories>
<repository>
<id>smartbear-repository</id>
<name>smartbear-repository</name>
<url>http://www.soapui.org/repository/maven2</url>
</repository>
</repositories><dependencies>
<!-- XML PATH -->
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>xml-path</artifactId>
<version>3.0.0</version>
</dependency><!-- CUCUMBER -->
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-java</artifactId>
<version>1.2.5</version>
</dependency><dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-junit</artifactId>
<version>1.2.5</version>
</dependency><dependency>
<groupId>com.smartbear.soapui</groupId>
<artifactId>soapui</artifactId>
<version>5.5.0</version>
</dependency>
</dependencies>
</project>"If there is a way to skip this part here, I'd be very thankful:
10:31:27,373 INFO [DefaultSoapUICore] Creating new settings at [C:\Users\clark.silva\soapui-settings.xml]
10:31:29,080 INFO [PluginManager] 0 plugins loaded in 1 ms
10:31:29,080 INFO [DefaultSoapUICore] All plugins loadedI've always lost almost 4s only to check this on my Eclipse's console. After the loading of this part, that my Junit test starts indeed.
Regards,
Clark
Related Content
Recent Discussions
- 15 years ago