Maven build was fixed recently and you should use 0.6.0-SNAPSHOT
(0.5.0 may not work) and you do not need tellurium-junit-java
dependency since it is just a demo project. The correct dependency
should be

        <dependency>
            <groupId>tellurium</groupId>
            <artifactId>tellurium-core</artifactId>
            <version>0.6.0-SNAPSHOT</version>
            <scope>compile</scope>
        </dependency>

Actually, it would be much easier if you create your Tellurium test
project using Tellurium Maven archetypes.

For example, to create a project supporting JUnit 4, you can use
command

mvn archetype:create -DgroupId=your_group_id -
DartifactId=your_artifact_id -DarchetypeArtifactId=tellurium-junit-
archetype -DarchetypeGroupId=tellurium -DarchetypeVersion=1.0-SNAPSHOT

For a project supporting TestNG, you can use command

mvn archetype:create -DgroupId=your_group_id -
DartifactId=your_artifact_id -DarchetypeArtifactId=tellurium-testng-
archetype -DarchetypeGroupId=tellurium -DarchetypeVersion=1.0-SNAPSHOT

The two archetypes have all dependencies such as Groovy and Selenium
set up for you. For more details, please
see

http://code.google.com/p/aost/wiki/TelluriumMavenArchetypes

and

http://code.google.com/p/aost/wiki/TenMinutesToTellurium

Thanks,

Jian

On Mar 30, 9:47 pm, AbsolutZero <[email protected]> wrote:
> Hey guys,
>
> I must be missing something simple. I have groovy and the tellurium
> dependencies in my pom, and Intellij is importing them just fine, but
> TelluriumJavaTestCase can never be found. Is there something else I'm
> supposed to add??
>
> Thanks in advance!
>
> <dependency>
>    <groupId>tellurium</groupId>
>    <artifactId>tellurium-core</artifactId>
>    <version>0.5.0</version>
> </dependency>
> <dependency>
>    <groupId>tellurium</groupId>
>    <artifactId>tellurium-junit-java</artifactId>
>    <version>0.5.0</version>
> </dependency>
> <dependency>
>    <groupId>org.codehaus.groovy</groupId>
>    <artifactId>groovy</artifactId>
>    <version>1.6.0</version>
> </dependency>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"tellurium-users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/tellurium-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to