Skip to content

Commit

Permalink
Add missing defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
kotcrab committed Sep 5, 2021
1 parent 28d86f2 commit 64e1705
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion deploy.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ artifacts {
}

javadoc {
def generateJavadoc = project.hasProperty("generateJavadoc");
def generateJavadoc = project.hasProperty("generateJavadoc")
onlyIf { (isReleaseVersion || gradle.taskGraph.hasTask("uploadArchives")) || generateJavadoc }

options.encoding = 'UTF-8'
Expand Down
3 changes: 3 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# required by deploy, change in your home gradle.properties file
ossrhUsername=your-jira-id
ossrhPassword=your-jira-password

0 comments on commit 64e1705

Please sign in to comment.