What's the status on a Maven 2 Plugin for WebTest? Did someone create one?
Is it available for use? I'm using the following setup and it works, but
it'd be nice to have less configuration code:
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<configuration>
<tasks>
<taskdef resource="webtest_base_relaxed.taskdef">
<classpath refid="maven.test.classpath"/>
</taskdef>
<mkdir dir="target/webtest-data"/>
<!-- Delete old results file if it exists -->
<delete
file="target/webtest-data/web-tests-result.xml"/>
<!-- This is so the default will be used if no test
case is specified -->
<property name="test" value="run-all-tests"/>
<echo level="info">Testing
'${project.build.finalName}' with locale '${user.language}'</echo>
<ant antfile="src/test/resources/web-tests.xml"
target="${test}">
<property name="user.language"
value="${user.language}"/>
<property name="webapp.name"
value="${project.build.finalName}"/>
<property name="host" value="${cargo.host}"/>
<property name="port" value="${cargo.port}"/>
</ant>
</tasks>
</configuration>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.canoo</groupId>
<artifactId>webtest</artifactId>
<version>${webtest.version}</version>
<exclusions>
<exclusion>
<groupId>javax.xml</groupId>
<artifactId>jsr173</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>${javamail.version}</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>oro</groupId>
<artifactId>oro</artifactId>
<version>${oro.version}</version>
</dependency>
</dependencies>
</plugin>
Matt
Denis N. Antonioli wrote:
>
> Hi
>
> it's great to have more developers involved with WebTest!
>
> On 5 oct. 06, at 09:41, Marc Guillemot wrote:
>
>> Hi committers & others,
>>
>> what would be the best place to put the sources of a maven 2
>> WebTest plugin?
>> Ejaz Syed seems to have already a plugin he would offer as initial
>> contribution and Peter Anning is ready to contribute too. I think
>> that this help is welcome.
>>
>> The different possibilities I see are:
>>
>> 1- together with WebTest
>> 2- as new subproject of WebTest
>> 3- in maven-plugins.sourceforge.net
>> 4- as new standalone project on SourceForge or somewhere else
>>
>>
>> (1) would help to ensure that it is always uptodate but will make
>> WebTest build process even more complicated.
>> (2) would make it like upcoming WebTestClipse and WebTestRecorder.
>> Perhaps should an lightweigt strategy be defined to avoid extra
>> work for Canoo for each WebTest subproject
>> (3) surely a great place for Maven plugins, Perhaps to far away
>> from WebTest itself
>> (4) surely the easiest way but far away from WebTest and from other
>> Maven plugins.
>>
>> What do you think?
>
>
> I'm against (1), as the webtest project is already complex enough.
>
> I think (3) is the best solution: I guess it's the place where maven
> users would first look for a maven plugin.
> And it is only a link away from the main WebTest site, so I don't
> think it is 'to far away'.
>
> Best
> dna
>
> --
> For some players, luck itself is an art.
> -- The color of money
>
> _______________________________________________
> WebTest mailing list
> [email protected]
> http://lists.canoo.com/mailman/listinfo/webtest
>
>
--
View this message in context:
http://www.nabble.com/Anybody-working-on-a-Maven-2-Plugin-tf2380598.html#a8001243
Sent from the WebTest mailing list archive at Nabble.com.
_______________________________________________
WebTest mailing list
[email protected]
http://lists.canoo.com/mailman/listinfo/webtest