Skip to content

Commit 3ed9786

Browse files
committed
Fixes groovydoc task: because no Groovy Jar was found on class path
Closes gh-78
1 parent 5b96c21 commit 3ed9786

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

build.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,19 @@ ext.isReleaseVersion = !projectVersion.endsWith("SNAPSHOT")
1717
version = project.projectVersion
1818
group = "org.graceframework"
1919

20+
repositories {
21+
mavenCentral()
22+
}
23+
2024
configurations {
2125
documentation
2226
}
2327

28+
dependencies {
29+
documentation libs.javaparser
30+
documentation libs.groovy.core
31+
}
32+
2433
def cleanTask = project.tasks.findByName('clean')
2534
if (cleanTask == null) {
2635
task clean(type: Delete) {

0 commit comments

Comments
 (0)