Skip to content

Commit

Permalink
Merge 19d91dc into 82b7d4e
Browse files Browse the repository at this point in the history
  • Loading branch information
Toilal committed Dec 10, 2015
2 parents 82b7d4e + 19d91dc commit c61f463
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 33 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
after_success:
- mvn clean verify jacoco:report coveralls:report
2 changes: 2 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# What is FluentLenium ?

[![Travis](https://img.shields.io/travis/FluentLenium/FluentLenium.svg)](https://travis-ci.org/FluentLenium/FluentLenium)

FluentLenium is a framework that helps you to write [Selenium](http://seleniumhq.org/) tests.
FluentLenium provides you a [fluent interface](http://en.wikipedia.org/wiki/Fluent_interface) to the [Selenium Web Driver](http://seleniumhq.org/docs/03_webdriver.html).
FluentLenium lets you use the assertion framework you like, either [jUnit assertions](http://www.junit.org/apidocs/org/junit/Assert.html), [Hamcrest](http://code.google.com/p/hamcrest/wiki/Tutorial)
Expand Down
64 changes: 31 additions & 33 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -193,41 +193,39 @@
<descriptor>src/main/assembly/dep.xml</descriptor>
</configuration>
</plugin>
</plugins>
</build>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.1.0</version>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<format>xml</format>
<maxmem>256m</maxmem>
<!-- aggregated reports for multi-module projects -->
<aggregate>true</aggregate>
</configuration>
</plugin>

<profiles>
<profile>
<id>cloudbees</id>
<build>
<plugins>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<excludes>
<exclude>**/unit/**</exclude>
<exclude>**/integration/**$**</exclude>
</excludes>
<includes>
<include>**/integration/**Test.java</include>
<include>**/integration/**/**Test.java</include>
</includes>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.5.201505241946</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>

</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</plugins>
</build>

</profiles>
</project>

0 comments on commit c61f463

Please sign in to comment.