Skip to content

Instantly share code, notes, and snippets.

@stevez
Created March 20, 2015 03:52
Show Gist options
  • Select an option

  • Save stevez/cfe48ae386ebdebcca17 to your computer and use it in GitHub Desktop.

Select an option

Save stevez/cfe48ae386ebdebcca17 to your computer and use it in GitHub Desktop.
robotframework maven plugin example
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.robotframework</groupId>
<artifactId>robotframework-maven-plugin-test-java-keyword</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Test</name>
<build>
<plugins>
<plugin>
<groupId>org.robotframework</groupId>
<artifactId>robotframework-maven-plugin</artifactId>
<version>1.4.4</version>
<executions>
<execution>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment