-
Notifications
You must be signed in to change notification settings - Fork 14
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 #275 from jdaugherty/7.0.x
#13552 Integrate test app from grails/grails-testing-support into grails-functional-tests
- Loading branch information
Showing
113 changed files
with
14,278 additions
and
0 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,75 @@ | ||
buildscript { | ||
repositories { | ||
maven { url "https://repo.grails.org/grails/core" } | ||
} | ||
dependencies { | ||
classpath "org.grails:grails-gradle-plugin:$grailsGradlePluginVersion" | ||
classpath "org.grails.plugins:views-gradle:$viewsVersion" | ||
} | ||
} | ||
|
||
group "org.grails" | ||
version '0.0.1' | ||
|
||
apply plugin:"org.grails.grails-web" | ||
apply plugin:"org.grails.plugins.views-json" | ||
apply plugin: "org.grails.grails-gsp" | ||
|
||
dependencies { | ||
implementation platform("org.grails:grails-bom:$grailsVersion") | ||
|
||
implementation "org.springframework.boot:spring-boot-starter-logging" | ||
implementation "org.springframework.boot:spring-boot-autoconfigure" | ||
implementation "org.grails:grails-core" | ||
implementation "org.springframework.boot:spring-boot-starter-actuator" | ||
implementation "org.springframework.boot:spring-boot-starter-tomcat" | ||
implementation "org.grails:grails-web-boot" | ||
implementation "org.grails:grails-logging" | ||
implementation "org.grails:grails-plugin-rest" | ||
implementation "org.grails:grails-plugin-databinding" | ||
implementation "org.grails:grails-plugin-i18n" | ||
implementation "org.grails:grails-plugin-services" | ||
implementation "org.grails:grails-plugin-url-mappings" | ||
implementation "org.grails:grails-plugin-interceptors" | ||
implementation "org.grails.plugins:cache" | ||
implementation "org.grails.plugins:async" | ||
implementation "org.grails.plugins:scaffolding" | ||
implementation "org.grails.plugins:events" | ||
implementation "org.grails.plugins:hibernate5" | ||
implementation "org.hibernate:hibernate-core-jakarta" | ||
implementation "org.grails.plugins:gsp" | ||
implementation "org.grails.plugins:views-json" | ||
implementation "org.grails.plugins:views-json-templates" | ||
console "org.grails:grails-console" | ||
profile "org.grails.profiles:web" | ||
runtimeOnly "com.h2database:h2" | ||
runtimeOnly "org.apache.tomcat:tomcat-jdbc" | ||
runtimeOnly "com.bertramlabs.plugins:asset-pipeline-grails" | ||
|
||
testImplementation 'org.grails:grails-web-testing-support' | ||
testImplementation 'org.grails:grails-gorm-testing-support' | ||
} | ||
|
||
bootRun { | ||
ignoreExitValue true | ||
jvmArgs( | ||
'-Dspring.output.ansi.enabled=always', | ||
'-noverify', | ||
'-XX:TieredStopAtLevel=1', | ||
'-Xmx1024m') | ||
sourceResources sourceSets.main | ||
String springProfilesActive = 'spring.profiles.active' | ||
systemProperty springProfilesActive, System.getProperty(springProfilesActive) | ||
} | ||
|
||
tasks.withType(GroovyCompile) { | ||
configure(groovyOptions) { | ||
forkOptions.jvmArgs = ['-Xmx1024m'] | ||
} | ||
} | ||
|
||
tasks.withType(Jar).configureEach { | ||
duplicatesStrategy = DuplicatesStrategy.INCLUDE | ||
} | ||
|
||
compileTestGroovy.dependsOn(compileGsonViews) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
26 changes: 26 additions & 0 deletions
26
demo33/grails-app/assets/images/grails-cupsonly-logo-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,21 @@ | ||
// This is a manifest file that'll be compiled into application.js. | ||
// | ||
// Any JavaScript file within this directory can be referenced here using a relative path. | ||
// | ||
// You're free to add application-wide JavaScript to this file, but it's generally better | ||
// to create separate JavaScript files as needed. | ||
// | ||
//= require jquery-2.2.0.min | ||
//= require bootstrap | ||
//= require_tree . | ||
//= require_self | ||
|
||
if (typeof jQuery !== 'undefined') { | ||
(function($) { | ||
$(document).ajaxStart(function() { | ||
$('#spinner').fadeIn(); | ||
}).ajaxStop(function() { | ||
$('#spinner').fadeOut(); | ||
}); | ||
})(jQuery); | ||
} |
Oops, something went wrong.