
archetype-resources.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of robotframework-archetype-selenium2library
Show all versions of robotframework-archetype-selenium2library
Robot Framework archetype for creating a testsuite
The newest version!
<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>${groupId}</groupId> <artifactId>${artifactId}</artifactId> <version>${version}</version> <name>Test Suite - ${artifactId}</name> <url>http://www.company.com/department/project</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <robotframework.version>2.8.1</robotframework.version> <robotframework.selenium2library.version>1.2.0.14</robotframework.selenium2library.version> </properties> <build> <plugins> <plugin> <!-- Execute Robot Framework Test Suite --> <groupId>org.robotframework</groupId> <artifactId>robotframework-maven-plugin</artifactId> <version>1.2</version> <executions> <execution> <id>test</id> <phase>test</phase> <goals> <goal>run</goal> </goals> <configuration> <logLevel>debug</logLevel> <testCasesDirectory>${project.basedir}/src/test/resources/robotframework</testCasesDirectory> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>org.robotframework</groupId> <artifactId>robotframework</artifactId> <version>${robotframework.version}</version> </dependency> <dependency> <groupId>com.github.markusbernhardt</groupId> <artifactId>robotframework-selenium2library-java</artifactId> <version>${robotframework.selenium2library.version}</version> </dependency> </dependencies> </plugin> </plugins> </build> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy