Skip to content

Instantly share code, notes, and snippets.

@Vanilton18
Last active February 24, 2016 02:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Vanilton18/82209d2cdcaebb41b93d to your computer and use it in GitHub Desktop.
Save Vanilton18/82209d2cdcaebb41b93d to your computer and use it in GitHub Desktop.
pomSikuliMaven.xml
<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>br.com.caboquinhotest</groupId>
<artifactId>teste-sikuli-maven</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Teste Sikuli Maven</name>
<description>Um projeto de teste utilizando artefato maven sikuli</description>
<properties>
<junit.version>4.12</junit.version>
<sikuli.version>1.1.0</sikuli.version>
</properties>
<dependencies>
<!-- Dependências de Teste -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.sikulix</groupId>
<artifactId>sikulixapi</artifactId>
<version>${sikuli.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<testSourceDirectory>src/test/java</testSourceDirectory>
<finalName>sikuli-maven</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<encoding>UTF-8</encoding>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment