This is an automated email from the ASF dual-hosted git repository.
jamesfredley pushed a commit to branch 5.0.x
in repository https://gitbox.apache.org/repos/asf/grails-geb.git
The following commit(s) were added to refs/heads/5.0.x by this push:
new 701ed75 apply asset-pipeline-gradle plugin (#155)
701ed75 is described below
commit 701ed75a7e9b82b96a7df613bb088ba5a814dcf2
Author: James Fredley <[email protected]>
AuthorDate: Sat Apr 5 12:39:55 2025 -0400
apply asset-pipeline-gradle plugin (#155)
resolves java.lang.ClassNotFoundException: org.graalvm.polyglot.Context
---
spock-container-test-app/build.gradle | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/spock-container-test-app/build.gradle
b/spock-container-test-app/build.gradle
index ca375c7..e491d68 100644
--- a/spock-container-test-app/build.gradle
+++ b/spock-container-test-app/build.gradle
@@ -17,12 +17,14 @@ buildscript {
dependencies {
classpath platform("org.apache.grails:grails-bom:$grailsVersion")
classpath "org.apache.grails:grails-gradle-plugins"
+ classpath "com.bertramlabs.plugins:asset-pipeline-gradle"
}
}
apply plugin: 'groovy'
apply plugin: 'org.apache.grails.gradle.grails-web'
apply plugin: 'org.apache.grails.gradle.grails-gsp'
+apply plugin: 'asset-pipeline'
group = 'org.demo.spock'
@@ -82,4 +84,4 @@ compileJava.options.release = 17
tasks.withType(Test).configureEach {
useJUnitPlatform()
//systemProperty('grails.geb.recording.mode', 'RECORD_ALL')
-}
\ No newline at end of file
+}