-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from jdaugherty/5.0.x
feature #79 - recording support
- Loading branch information
Showing
88 changed files
with
43,075 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
java=17.0.12-librca |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
### Gradle ### | ||
.gradle | ||
build/ | ||
!gradle/wrapper/gradle-wrapper.jar | ||
!**/src/main/**/build/ | ||
!**/src/test/**/build/ | ||
|
||
### STS ### | ||
.apt_generated | ||
.classpath | ||
.factorypath | ||
.project | ||
.settings | ||
.springBeans | ||
.sts4-cache | ||
bin/ | ||
!**/src/main/**/bin/ | ||
!**/src/test/**/bin/ | ||
|
||
### IntelliJ IDEA ### | ||
.idea | ||
*.iws | ||
*.iml | ||
*.ipr | ||
out/ | ||
!**/src/main/**/out/ | ||
!**/src/test/**/out/ | ||
|
||
### NetBeans ### | ||
/nbproject/private/ | ||
/nbbuild/ | ||
/dist/ | ||
/nbdist/ | ||
/.nb-gradle/ | ||
|
||
### VS Code ### | ||
.vscode/ | ||
|
||
### Other ### | ||
Thumbs.db | ||
.DS_Store | ||
target/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
plugins { | ||
id "groovy" | ||
id "org.grails.grails-web" | ||
id "org.grails.grails-gsp" | ||
id "war" | ||
id "idea" | ||
id "com.bertramlabs.asset-pipeline" version "5.0.1" | ||
id "eclipse" | ||
} | ||
|
||
group = "org.demo.spock" | ||
|
||
repositories { | ||
mavenCentral() | ||
maven { url "https://repo.grails.org/grails/core/" } | ||
maven { url "https://repository.apache.org/content/repositories/snapshots"} | ||
} | ||
|
||
dependencies { | ||
profile("org.grails.profiles:web") | ||
implementation("org.grails:grails-core") | ||
implementation("org.grails:grails-logging") | ||
implementation("org.grails:grails-plugin-databinding") | ||
implementation("org.grails:grails-plugin-i18n") | ||
implementation("org.grails:grails-plugin-interceptors") | ||
implementation("org.grails:grails-plugin-rest") | ||
implementation("org.grails:grails-plugin-services") | ||
implementation("org.grails:grails-plugin-url-mappings") | ||
implementation("org.grails:grails-web-boot") | ||
implementation("org.grails.plugins:gsp") | ||
implementation("org.grails.plugins:hibernate5") | ||
implementation("org.grails.plugins:scaffolding") | ||
implementation("org.sitemesh:grails-plugin-sitemesh3:7.0.0-SNAPSHOT") | ||
implementation("org.springframework.boot:spring-boot-autoconfigure") | ||
implementation("org.springframework.boot:spring-boot-starter") | ||
implementation("org.springframework.boot:spring-boot-starter-actuator") | ||
implementation("org.springframework.boot:spring-boot-starter-logging") | ||
implementation("org.springframework.boot:spring-boot-starter-tomcat") | ||
implementation("org.springframework.boot:spring-boot-starter-validation") | ||
console("org.grails:grails-console") | ||
runtimeOnly("com.bertramlabs.plugins:asset-pipeline-grails") | ||
runtimeOnly("com.h2database:h2") | ||
runtimeOnly("org.apache.tomcat:tomcat-jdbc") | ||
runtimeOnly("org.fusesource.jansi:jansi") | ||
integrationTestImplementation testFixtures(project(':geb')) | ||
testImplementation("org.grails:grails-gorm-testing-support") | ||
testImplementation("org.grails:grails-web-testing-support") | ||
testImplementation("org.spockframework:spock-core") | ||
} | ||
|
||
compileJava.options.release = 17 | ||
|
||
tasks.withType(Test) { | ||
useJUnitPlatform() | ||
systemProperty 'grails.geb.recording.mode', 'RECORD_ALL' | ||
} | ||
assets { | ||
minifyJs = true | ||
minifyCss = true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
repositories { | ||
mavenCentral() | ||
maven { url "https://repo.grails.org/grails/core/" } | ||
maven { url "https://repository.apache.org/content/repositories/snapshots"} | ||
} | ||
dependencies { | ||
implementation platform("org.grails:grails-bom:7.0.0-SNAPSHOT") | ||
implementation("org.grails:grails-gradle-plugin:7.0.0-SNAPSHOT") | ||
implementation("org.grails.plugins:hibernate5:9.0.0-SNAPSHOT") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
grailsVersion=7.0.0-SNAPSHOT | ||
grailsGradlePluginVersion=7.0.0-SNAPSHOT | ||
version=0.1 | ||
org.gradle.caching=true | ||
org.gradle.daemon=true | ||
org.gradle.parallel=true | ||
org.gradle.jvmargs=-Dfile.encoding=UTF-8 -Xmx1024M |
Binary file not shown.
7 changes: 7 additions & 0 deletions
7
spock-container-test-app/gradle/wrapper/gradle-wrapper.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.