Skip to content

Commit

Permalink
Fix javadoc errors and add javadoc to Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
robyj authored and Andrew Woods committed Jun 2, 2015
1 parent 9080b46 commit 9b7b152
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Expand Up @@ -4,6 +4,12 @@ jdk:
before_install:
- "echo $JAVA_OPTS"
- "export JAVA_OPTS=-Xmx512m"

script:
- mvn install -B -V
- mvn javadoc:jar
- mvn javadoc:test-aggregate

notifications:
irc: "irc.freenode.org#fcrepo"
email:
Expand Down
2 changes: 2 additions & 0 deletions README.md
@@ -1,6 +1,8 @@
fcrepo-module-auth-rbacl
========================

[![Build Status](https://travis-ci.org/fcrepo4/fcrepo-module-auth-rbacl.png?branch=master)](https://travis-ci.org/fcrepo4/fcrepo-module-auth-rbacl)

Role Based Authorization Delegate Module for the Fedora 4 Repository

This module is based on the design documented here: https://wiki.duraspace.org/display/FEDORA4x/Basic+Role-based+Authorization+Delegate
Expand Up @@ -43,7 +43,7 @@ protected List<RolesFadTestObjectBean> getTestObjs() {

/**
* Test method for
* {@link org.fcrepo.auth.roles.common.AccessRoles#get(java.util.List)}.
* {@link org.fcrepo.auth.roles.common.AccessRoles#get}.
*
* @throws IOException
* @throws ClientProtocolException
Expand All @@ -57,7 +57,7 @@ public void testGetEmptyRoles() throws ClientProtocolException, IOException {

/**
* Test method for
* {@link org.fcrepo.auth.roles.common.AccessRoles#get(java.util.List)}.
* {@link org.fcrepo.auth.roles.common.AccessRoles#get}.
*
* @throws IOException
* @throws ClientProtocolException
Expand Down Expand Up @@ -91,7 +91,7 @@ public void testCRUDRoles() throws ClientProtocolException, IOException {

/**
* Test method for
* {@link org.fcrepo.auth.roles.common.AccessRoles#get(java.util.List, java.util.List)}
* {@link org.fcrepo.auth.roles.common.AccessRoles#get}
* .
*
* @throws IOException
Expand Down
5 changes: 5 additions & 0 deletions pom.xml
Expand Up @@ -229,6 +229,11 @@
<reuseForks>false</reuseForks>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down

0 comments on commit 9b7b152

Please sign in to comment.