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

Commit

Permalink
Simplify implementation to trigger shipping Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
mstachniuk committed Mar 24, 2019
1 parent 1d32785 commit 649faf7
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 649faf7

Please sign in to comment.