Skip to content

Commit

Permalink
Merge branch 'master' of github.com:ActiveJpa/activejpa
Browse files Browse the repository at this point in the history
  • Loading branch information
Ganesh Subramanian committed Sep 26, 2014
2 parents 26cd0e6 + d2b26db commit a37e788
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
@@ -1,4 +1,5 @@
language: java
after_success: mvn cobertura:cobertura coveralls:cobertura
jdk:
- oraclejdk7
- openjdk7
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
ActiveJpa [![Build Status](https://travis-ci.org/ActiveJpa/activejpa.png?branch=master)](https://travis-ci.org/ActiveJpa/activejpa)
ActiveJpa [![Build Status](https://travis-ci.org/ActiveJpa/activejpa.png?branch=master)](https://travis-ci.org/ActiveJpa/activejpa) [![Coverage Status](https://img.shields.io/coveralls/ActiveJpa/activejpa.svg)](https://coveralls.io/r/ActiveJpa/activejpa)
=========

ActiveJpa is a java library that attempts to implement the active record pattern on top of JPA. The goal of this library is to eliminate the need to create DAO or Repository classes and make programming DAL a lot more simpler.
Expand Down
2 changes: 2 additions & 0 deletions activejpa-examples/activejpa-examples-spring/README
Expand Up @@ -33,3 +33,5 @@ Ensure your entity classes extend org.activejpa.entity.Model

## Starting the example application
Just run `mvn tomcat7:run`

Hit http://localhost:9966/petclinic/ and playaround with the petclinic application
17 changes: 17 additions & 0 deletions pom.xml
Expand Up @@ -123,6 +123,23 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.6</version>
<configuration>
<formats>
<format>xml</format>
<format>html</format>
</formats>
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>2.2.0</version>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit a37e788

Please sign in to comment.