Skip to content

Commit 6df65bf

Browse files
author
Justin Ryan
committed
Fixing aggregateJavadoc
1 parent b0585da commit 6df65bf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

gradle/convention.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ def docTasks = [:]
7373
def shortName = docClass.simpleName.toLowerCase()
7474
def docTask = task "aggregate${shortName.capitalize()}"(type: docClass, description: "Aggregate subproject ${shortName}s") {
7575
source = allSources
76+
destinationDir = file("${project.buildDir}/docs/${shortName}")
7677
doFirst {
7778
def classpaths = allprojects.findAll { it.plugins.hasPlugin(JavaPlugin) }.collect { it.sourceSets.main.compileClasspath }
7879
classpath = files(classpaths)
@@ -84,7 +85,7 @@ def docTasks = [:]
8485
}
8586

8687
githubPages {
87-
repoUri = "[email protected]:quidryan/${rootProject.githubProjectName}.git"
88+
repoUri = "[email protected]:Netflix/${rootProject.githubProjectName}.git"
8889
pages {
8990
docTasks.each { shortName, docTask ->
9091
from(docTask.outputs.files) {

0 commit comments

Comments
 (0)