Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #215 from mockito/simplify-impl
Browse files Browse the repository at this point in the history
Simplify implementation to trigger shipping Javadoc
  • Loading branch information
mstachniuk authored Mar 24, 2019
2 parents 1d32785 + 649faf7 commit 5ce7983
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ allprojects {

// enable Shipkit Java plugin. All Shipkit configuration will be stored in gradle/shipkit.gradle file
apply plugin: "org.shipkit.java"
// enable Shipkit Javadoc plugin. Now Javadoc can be shipped to the Git repository
// enable Shipkit Javadoc plugin. Now Javadoc can be shipped to the GitHub repository
apply plugin: "org.shipkit.javadoc"

apply from: "gradle/ide.gradle"
2 changes: 1 addition & 1 deletion subprojects/impl/src/main/java/Library.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ public class Library implements SomeApi {
* @return true
*/
public boolean someLibraryMethod() {
return 1 == 1;
return true;
}
}

0 comments on commit 5ce7983

Please sign in to comment.