Skip to content

Commit

Permalink
Add javadoc zip to travis published artifacts.
Browse files Browse the repository at this point in the history
  • Loading branch information
chilimannen committed Mar 12, 2017
1 parent 662d19d commit 8ececff
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ script:
- gradle build
- gradle sourcesJar
- gradle archiveZip
- gradle archiveJavadoc
notifications:
email: true
before_cache:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public class LogContext extends ServiceContext {
public LogContext(CoreContext context) {
super(context);

// Logging output.
new StorageLoader<JsonItem>(context)
.withPlugin(service().getPlugin())
.withClass(JsonItem.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


/**
* authentication.Mock implementation of a logger to disable logging.
* implementation of a mock logger to disable logging.
*/
public class LoggerMock extends DefaultLogger {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ public void logMessage(TestContext test) {

context.periodic(() -> 20, "", event -> {
context.storage().size(size -> {
System.out.println(size.result());
if (size.result() == MESSAGE_COUNT) {
context.cancel(event);
async.complete();
Expand Down

0 comments on commit 8ececff

Please sign in to comment.