Forum Discussion
redfish4ktc2
12 years agoSuper Contributor
Hi,
in the plugin declaration, you have to add your project as a dependency; then, the plugin will be able to access to your custom junit repot
warn: you may have to install your project in your local maven repo before the plugin would be able to access it
it should look like
in the plugin declaration, you have to add your project as a dependency; then, the plugin will be able to access to your custom junit repot
warn: you may have to install your project in your local maven repo before the plugin would be able to access it
it should look like
<plugin>
<groupId>com.github.redfish4ktc.soapui</groupId>
<artifactId>maven-soapui-extension-plugin</artifactId>
<version>4.5.1.5</version>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
....
</dependency>
</dependencies>
<configuration>
....
</configuration>
</plugin>