Latest Maven POM needed?

Hi, for Appium studio 11.0.64 what is latest pom file needed for working with eclipse - I see a number of different versions in various locations. Each of them have different dependencies ie


com.experitest
appium
4.1.2

Or
name: ‘seetest-appium’, version:‘10.8’

Hi @davebeattie

You should go with
com.experitest
appium
4.1.2

Using this dependency requires the repository https://cloud.experitest.com/repo

I apologize for the confusion and thank you for letting us know about it. We will fix all references where needed.

Thanks again.

Hi Nivi -

Is that address of repo correct? https://cloud.experitest.com/repo

<repositories>
        <repository>
        <releases>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
            <checksumPolicy>fail</checksumPolicy>
        </releases>
        <id>Experitest.repo1</id>
        <name>YourName</name>
        <url>https://cloud.experitest.com/repo</url>
        <layout>default</layout>
    </repository>
</repositories>
com.experitest appium 4.1.2

Getting a 404 error when trying to open,

Maven project wont compile

[ERROR] Failed to execute goal on project Your.Artifact.Id: Could not resolve dependencies for project Your.Group.Id:Your.Artifact.Id:jar:Your.Version: Could not transfer artifact com.experitest:aspectjweaver:jar:1.8.9 from/to Experitest.repo1 (http://repo.experitest.com:8010/Maven2/): Checksum validation failed: Checksum validation failed, expected db28774f477f07220eac18d5ec9c4e01f48589d7db28774f477f07220eac18d5ec9c4e01f48589d7db28774f477f07220eac18d5ec9c4e01f48589d7 but is b057ab64554d27919ec026159f4f8b8c51a8b47a ->

Hi Dave,

This is the correct repo. The error message indicates that a certain .jar failed to download because of checksum validation failure. It might have a temporary issue.

Also, note that the error states mock groud and artifact id and version.

Did you configure the dependency as follows?

<dependencies>
        <dependency>
            <groupId>com.experitest</groupId>
            <artifactId>appium</artifactId>
            <version>4.1.2</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

Hi Nivi,

Dependency configured as above

have tried this pom on few machines and still getting errors

Failure to transfer com.experitest:aspectjweaver:jar:1.8.9 from https://cloud.experitest.com/repo
Missng artifact com.experitest:aspectjweaver:jar:1.8.9

Is there something wrong from your end?

Hi Dave

Can you share with us your POM.xml file?

Sure Tom

pom.xml (886 Bytes)

Thanks

Dave

Hi Dave,

Please try to delete the local repository at C:\Users\davemello.m2\repository. Delete the repository folder.

Then, in the command line navigate to the project folder and run the following mvn clean install -U

If this does not solve the issue, try to fetch the dependency directly:

<dependency>
    <groupId>org.aspectj</groupId>
    <artifactId>aspectjweaver</artifactId>
    <version>1.6.2</version>
</dependency>

Thanks Nivi/Tom

Working now after deleting repo and mvn clean install