Hi,

I did another important modification to the jwebunit project. With the muliplication of dialogs (HttpUnit, Jacobie and HtmlUnit), jWebUnit needed too many dependencies. For example, when you use HttpUnit plugin, you don't need all the HtmlUnit dependencies.
That's why I split jwebunit in different Maven modules:
- core: it's the API of jWebUnit, totally independent of the dialogs. TestingEngineRegistry make the link with available dialogs. - tests-commons: it's a module that store all test cases and html stuff. Each plugin have to pass the same tests
 - htmlunit-plugin: HtmlUnit implementation of IJWebUnitDialog
 - httpunit-plugin: HttpUnit implementation of IJWebUnitDialog
 - jacobie-plugin: Jacobie implementation of IJWebUnitDialog

Now, if you want to use jWebUnit with your project, you just need to choose you implementation, and add a Maven dependency like this :

...
<dependencies>
   ...
   <dependency>
       <groupId>net.sourceforge.jwebunit</groupId>
       <artifactId>XXXX-plugin</artifactId>
       <version>1.3-SNAPSHOT</version>
   </dependency>
   ...
</dependencies>
...

And it will transitively add all needed dependencies of the XXX plugin.

I made an update of the website, with a bit of documentation. If you have any question or feedback, feel free to mail me.

++
Julien

This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.



-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Jwebunit-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jwebunit-development

Reply via email to