diff --git a/build.gradle b/build.gradle index af82543..560cc47 100644 --- a/build.gradle +++ b/build.gradle @@ -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" diff --git a/subprojects/impl/src/main/java/Library.java b/subprojects/impl/src/main/java/Library.java index 41659cc..d151a45 100644 --- a/subprojects/impl/src/main/java/Library.java +++ b/subprojects/impl/src/main/java/Library.java @@ -10,6 +10,6 @@ public class Library implements SomeApi { * @return true */ public boolean someLibraryMethod() { - return 1 == 1; + return true; } }