← Back to team overview

sikuli-driver team mailing list archive

[Question #497299]: Maven Dependency Download fails

 

New question #497299 on Sikuli:
https://answers.launchpad.net/sikuli/+question/497299

Upon using the below maven dependency details provided in sikulix website, the installation fails using mvn clean install command.

    <dependency>
      <groupId>com.sikulix</groupId>
      <artifactId>sikulixapi</artifactId>
      <version>1.1.0</version>
    </dependency>

The error I see is, dependency resolution exception.

My pom.xml is file like below:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0";
                 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
                 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd";>
	<modelVersion>4.0.0</modelVersion>
	<groupId>MySel20Proj</groupId>
	<artifactId>MySel20Proj</artifactId>
	<version>1.0</version>
	<dependencies>
		<dependency>
			<groupId>org.seleniumhq.selenium</groupId>
			<artifactId>selenium-server</artifactId>
			<version>2.53.0</version>
		</dependency>
		<dependency>
			<groupId>com.sikulix</groupId>
			<artifactId>sikulixapi</artifactId>
			<version>1.1.0</version>
		</dependency>		
	</dependencies>
</project>

It works fine for sikuli 1.2.0 the dependency details given mvn website - https://mvnrepository.com/artifact/org.sikuli/sikuli-api.

Can you please help?

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.