Skip to content

Commit 70c2600

Browse files
committed
Revert "Back to Grace Doc 2024.0.0-M1"
This reverts commit fb32138.
1 parent d63dab5 commit 70c2600

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

build.gradle

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,12 @@ plugins {
2727
id 'signing'
2828
id 'eclipse'
2929
id 'idea'
30-
alias libs.plugins.grace.doc
30+
// alias libs.plugins.grace.doc
3131
alias libs.plugins.gradle.nexus.publish
3232
}
3333

34+
apply plugin: 'org.graceframework.grace-doc'
35+
3436
ext {
3537
isCiBuild = project.hasProperty("isCiBuild") || System.getenv().get("CI") as Boolean
3638
isBuildSnapshot = project.version.endsWith("-SNAPSHOT")
@@ -94,11 +96,15 @@ tasks.withType(Groovydoc) {
9496
classpath += configurations.documentation
9597
}
9698

97-
docs {
99+
publishGuide {
98100
dependsOn groovydoc
99101
sourceDir = project.file('src/docs')
100102
}
101103

104+
tasks.register('docs') { task ->
105+
task.dependsOn groovydoc, publishGuide
106+
}
107+
102108
nexusPublishing {
103109
repositories {
104110
sonatype {

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ehcache = "2.10.6"
77
embedmongo = "4.21.0"
88
glassfish-expressly = "5.0.0"
99
grace-data = "2024.0.0-M1"
10-
grace-framework = "2024.0.0-M1"
10+
grace-framework = "2024.0.0-SNAPSHOT"
1111
grace-gradle = "2024.0.0-M1"
1212
groovy = "4.0.29"
1313
h2 = "2.3.232"

0 commit comments

Comments
 (0)