Seems you need to add Tellurium Maven repo to your settings.xml file

            <repositories>
                 <repository>
                    <id>kungfuters-public-snapshots-repo</id>
                    <name>Kungfuters.org Public Snapshot Repository</
name>
                    <releases>
                        <enabled>false</enabled>
                    </releases>
                    <snapshots>
                        <enabled>true</enabled>
                    </snapshots>
                    <url>http://kungfuters.org/nexus/content/
repositories/snapshots</url>
                </repository>
                <repository>
                    <id>kungfuters-public-releases-repo</id>
                    <name>Kungfuters.org Public Releases Repository</
name>
                    <releases>
                        <enabled>true</enabled>
                    </releases>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                    <url>http://kungfuters.org/nexus/content/
repositories/releases</url>
                </repository>

Please see

http://code.google.com/p/aost/wiki/MavenHowTo#settings.xml

Thanks,

Jian

On Mar 30, 10:34 pm, AbsolutZero <[email protected]> wrote:
> John,
>
> I got this error when I cleared out my .m2 repo of the tellurium
> directory and tried a mvn clean install again...
>
> Missing:
> ----------
> 1) tellurium:tellurium-core:jar:0.6.0-SNAPSHOT
>
>   Try downloading the file manually from the project website.
>
>   Then, install it using the command:
>       mvn install:install-file -DgroupId=tellurium -
> DartifactId=tellurium-core -Dversion=0.6.0-SNAPSHOT -Dpackaging=jar -
> Dfile=/path/to/file
>
>   Alternatively, if you host your own repository you can deploy the
> file there:
>       mvn deploy:deploy-file -DgroupId=tellurium -
> DartifactId=tellurium-core -Dversion=0.6.0-SNAPSHOT -Dpackaging=jar -
> Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
>
> -dan
>
> On Mar 30, 10:20 pm, John <[email protected]> wrote:
>
> > 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