Skip to content

Commit

Permalink
Migrate to grace-docs dependency in GrailsDocGradlePlugin
Browse files Browse the repository at this point in the history
Closes gh-374
  • Loading branch information
rainboyan committed Jun 17, 2024
1 parent 404a297 commit d356375
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2014-2022 the original author or authors.
* Copyright 2014-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -41,7 +41,7 @@ class GrailsDocGradlePlugin implements Plugin<Project> {
@Override
void apply(Project project) {
Configuration docConfiguration = project.configurations.create(DOC_CONFIGURATION)
project.dependencies.add(DOC_CONFIGURATION, "org.grails:grails-docs:${BuildSettings.getPackage().getImplementationVersion()}")
project.dependencies.add(DOC_CONFIGURATION, "org.graceframework:grace-docs:${BuildSettings.getPackage().getImplementationVersion()}")

Groovydoc groovydocTask = (Groovydoc) project.tasks.findByName('groovydoc')
Javadoc javadocTask = (Javadoc) project.tasks.findByName('javadoc')
Expand Down

0 comments on commit d356375

Please sign in to comment.