Bonjour,
Je voudrais executer des tests réalisés avec SoapUI sur mon appli.
Pour cela j'ai bien configurer mon pom.xml :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
<plugin>
		<groupId>eviware</groupId>
		<artifactId>maven-soapui-plugin</artifactId>
		<version>1.7</version>
		<configuration>
			<projectFile>D:\ws_SoapUI\TestConsultationImageValeur-soapui-project.xml</projectFile>
			<host>http://localhost:8080/omegabox</host>
			<testSuite>TestConsultationImageValeur</testSuite>
			<testCase>TestCaseGetValeur</testCase>
		</configuration>
	  </plugin>
Cependant quand je lance la commnde maven :
mvn eviware:maven-soapui-plugin:test
il me renvoie directement un build error :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
D:\omegabox>mvn mvn eviware:maven-soapui-plugin:test
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Invalid task 'mvn': you must specify a valid lifecycle phase, or a goal in the format plugin:goal or pluginGroupId:pluginArtifactId:pluginVersion:goal
[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: < 1 second
[INFO] Finished at: Thu Jul 12 17:20:32 CEST 2007
[INFO] Final Memory: 1M/254M
[INFO] ------------------------------------------------------------------------
j'ai aussi essayer la commande mvn maven-soapui-plugin:test
mais il me renvoie un build failure.
Si qq'un voit comment faire merci de me répondre