Skip to content

Commit d41559f

Browse files
committed
Start building against Grace Data and Grace Framework 2024.0.0 snapshots
1 parent b121043 commit d41559f

File tree

17 files changed

+84
-38
lines changed

17 files changed

+84
-38
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ ext."signing.password" = System.getenv("SIGNING_PASSPHRASE") ?: project.hasPrope
3737
ext."signing.secretKeyRingFile" = project.hasProperty("signing.secretKeyRingFile") ? project.getProperty('signing.secretKeyRingFile') : null
3838

3939
// Build with the current version of GORM
40-
ext['grace-gorm.version'] = project.gormVersion
40+
ext['grace-data.version'] = project.gormVersion
4141

4242
logger.lifecycle "GORM VERSION = ${project.gormVersion}"
4343

@@ -317,7 +317,7 @@ tasks.withType(Groovydoc) {
317317
classpath += configurations.documentation
318318
}
319319

320-
docs {
320+
publishGuide {
321321
dependsOn groovydoc
322322
sourceDir = project.file('src/docs')
323323
}

examples/grace-data-service/app/init/example/Application.groovy renamed to examples/grace-data-service/app/boot/example/Application.groovy

File renamed without changes.

examples/grace-data-service/app/init/example/BootStrap.groovy renamed to examples/grace-data-service/app/boot/example/BootStrap.groovy

File renamed without changes.

examples/grace-data-service/build.gradle

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
buildscript {
22
repositories {
33
mavenCentral()
4+
maven {
5+
name = 'Maven Central Portal Snapshots'
6+
url = 'https://central.sonatype.com/repository/maven-snapshots/'
7+
8+
content {
9+
includeGroupAndSubgroups 'org.graceframework'
10+
}
11+
mavenContent {
12+
snapshotsOnly()
13+
}
14+
}
415
}
516
dependencies {
617
classpath "org.graceframework:grace-gradle-plugin:$graceVersion"
@@ -31,8 +42,8 @@ dependencies {
3142
implementation "org.graceframework:grace-plugin-rest"
3243
implementation "org.graceframework:grace-plugin-services"
3344
implementation "org.graceframework:grace-plugin-url-mappings"
34-
implementation "org.graceframework.plugins:cache"
35-
implementation "org.graceframework.plugins:events"
45+
// implementation "org.graceframework.plugins:cache"
46+
implementation "org.graceframework:grace-plugin-events"
3647
implementation "org.graceframework.plugins:views-json"
3748
implementation project(":hibernate")
3849
runtimeOnly 'com.h2database:h2'

examples/grace-database-per-tenant/app/init/datasources/Application.groovy renamed to examples/grace-database-per-tenant/app/boot/datasources/Application.groovy

File renamed without changes.

examples/grace-database-per-tenant/build.gradle

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
buildscript {
22
repositories {
33
mavenCentral()
4+
maven {
5+
name = 'Maven Central Portal Snapshots'
6+
url = 'https://central.sonatype.com/repository/maven-snapshots/'
7+
8+
content {
9+
includeGroupAndSubgroups 'org.graceframework'
10+
}
11+
mavenContent {
12+
snapshotsOnly()
13+
}
14+
}
415
}
516
dependencies {
617
classpath "org.graceframework:grace-gradle-plugin:$graceVersion"
@@ -36,8 +47,8 @@ dependencies {
3647
implementation "org.graceframework:grace-plugin-services"
3748
implementation "org.graceframework:grace-plugin-url-mappings"
3849
implementation project(":hibernate")
39-
implementation "org.graceframework.plugins:cache"
40-
implementation "org.graceframework.plugins:events"
50+
// implementation "org.graceframework.plugins:cache"
51+
implementation "org.graceframework:grace-plugin-events"
4152
runtimeOnly "org.graceframework.plugins:fields"
4253
runtimeOnly "org.graceframework.plugins:scaffolding"
4354
runtimeOnly "org.graceframework.plugins:asset-pipeline-plugin"

examples/grace-hibernate5/app/init/functional/tests/Application.groovy renamed to examples/grace-hibernate5/app/boot/functional/tests/Application.groovy

File renamed without changes.

examples/grace-hibernate5/app/init/functional/tests/BootStrap.groovy renamed to examples/grace-hibernate5/app/boot/functional/tests/BootStrap.groovy

File renamed without changes.

examples/grace-hibernate5/build.gradle

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@ buildscript {
22
repositories {
33
mavenCentral()
44
gradlePluginPortal()
5+
maven {
6+
name = 'Maven Central Portal Snapshots'
7+
url = 'https://central.sonatype.com/repository/maven-snapshots/'
8+
9+
content {
10+
includeGroupAndSubgroups 'org.graceframework'
11+
}
12+
mavenContent {
13+
snapshotsOnly()
14+
}
15+
}
516
}
617
dependencies {
718
classpath "org.graceframework:grace-gradle-plugin:$graceVersion"
@@ -17,10 +28,6 @@ apply plugin: "org.graceframework.asset-pipeline"
1728

1829
group = "examples"
1930

20-
repositories {
21-
mavenCentral()
22-
}
23-
2431
configurations {
2532
developmentOnly
2633
}
@@ -48,9 +55,9 @@ dependencies {
4855
implementation "org.graceframework:grace-plugin-rest"
4956
implementation "org.graceframework:grace-plugin-services"
5057
implementation "org.graceframework:grace-plugin-url-mappings"
51-
implementation "org.graceframework.plugins:async"
52-
implementation "org.graceframework.plugins:cache"
53-
implementation "org.graceframework.plugins:events"
58+
implementation "org.graceframework:grace-plugin-async"
59+
// implementation "org.graceframework.plugins:cache"
60+
implementation "org.graceframework:grace-plugin-events"
5461
implementation "org.graceframework.plugins:fields"
5562
implementation "org.graceframework.plugins:scaffolding"
5663
implementation project(":hibernate")

examples/grace-multiple-datasources/app/init/datasources/Application.groovy renamed to examples/grace-multiple-datasources/app/boot/datasources/Application.groovy

File renamed without changes.

0 commit comments

Comments
 (0)