Skip to content

Commit

Permalink
enable coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
pdurbin committed Aug 31, 2015
1 parent 5915ff2 commit 4e9f2ed
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
language: java
script: cd examples/javaee7 && mvn test
after_success: cd examples/javaee7 && mvn jacoco:report coveralls:report
11 changes: 11 additions & 0 deletions examples/javaee7/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,19 @@
<goal>report</goal>
</goals>
</execution>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.0.0</version>
</plugin>
</plugins>
</build>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
<persistence-unit name="javaee7addressbookPersistenceUnit" transaction-type="JTA">
<exclude-unlisted-classes>false</exclude-unlisted-classes>
<exclude-unlisted-classes>true</exclude-unlisted-classes>
<properties>
<property name="javax.persistence.schema-generation.database.action" value="create"/>
</properties>
Expand Down

1 comment on commit 4e9f2ed

@pdurbin
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.