-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to Grace 2023.1.0-M1 Closes gh-3
- Loading branch information
Showing
47 changed files
with
471 additions
and
40 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,2 @@ | ||
gradlew text eol=lf | ||
gradlew.bat text eol=crlf |
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,11 @@ | ||
# backup | ||
|
||
This project is generated by Grace v2023.1.0-M1. | ||
|
||
### Versions | ||
|
||
* Grace 2023.1.0-M1 | ||
* Groovy 4.0.23 | ||
* Spring Boot 3.1.12 | ||
* Spring Framework 6.0.23 | ||
* Tomcat 10.1.30 |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 0 additions & 2 deletions
2
...s-app/init/pubsub/demo/Application.groovy → ...o/app/init/pubsub/demo/Application.groovy
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,57 +1,103 @@ | ||
buildscript { | ||
repositories { | ||
mavenLocal() | ||
mavenCentral() | ||
maven { url "https://repo.grails.org/grails/core" } | ||
maven { url 'https://repo.gradle.org/gradle/libs-releases' } | ||
} | ||
dependencies { | ||
classpath "org.graceframework.plugins:views-gradle:5.0.0" | ||
} | ||
plugins { | ||
id "eclipse" | ||
id "idea" | ||
id "war" | ||
id "org.graceframework.grace-web" | ||
// id "org.graceframework.asset-pipeline" | ||
id "com.github.erdi.webdriver-binaries" | ||
// id "org.graceframework.grace-gsp" | ||
id "org.graceframework.plugins.views-json" | ||
} | ||
|
||
apply plugin: "org.graceframework.plugins.views-json" | ||
group "grace.apps" | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
configurations { | ||
developmentOnly | ||
} | ||
|
||
dependencies { | ||
implementation "org.springframework.boot:spring-boot-starter-logging" | ||
implementation "org.springframework.boot:spring-boot-autoconfigure" | ||
developmentOnly("org.springframework.boot:spring-boot-devtools") | ||
console "org.graceframework:grace-console" | ||
implementation "org.springframework.boot:spring-boot-starter-actuator" | ||
implementation "org.springframework.boot:spring-boot-starter-web" | ||
implementation "org.springframework.boot:spring-boot-starter-logging" | ||
implementation "org.springframework.boot:spring-boot-starter-tomcat" | ||
implementation "org.springframework.boot:spring-boot-starter-validation" | ||
implementation "org.graceframework:grace-boot" | ||
implementation "org.graceframework:grace-core" | ||
implementation "org.graceframework:grace-logging" | ||
implementation "org.graceframework:grace-plugin-codecs" | ||
implementation "org.graceframework:grace-plugin-controllers" | ||
implementation "org.graceframework:grace-plugin-datasource" | ||
implementation "org.graceframework:grace-plugin-converters" | ||
implementation "org.graceframework:grace-plugin-databinding" | ||
implementation "org.graceframework:grace-plugin-datasource" | ||
implementation "org.graceframework:grace-plugin-domain-class" | ||
implementation "org.graceframework:grace-plugin-i18n" | ||
implementation "org.graceframework:grace-plugin-interceptors" | ||
implementation "org.graceframework:grace-plugin-management" | ||
implementation "org.graceframework:grace-plugin-rest" | ||
implementation "org.graceframework:grace-plugin-services" | ||
implementation "org.graceframework:grace-plugin-url-mappings" | ||
implementation project(":grace-plugin-async") | ||
runtimeOnly project(":grace-events-rxjava") | ||
runtimeOnly project(":grace-async-rxjava") | ||
implementation "org.graceframework:grace-logging" | ||
implementation "org.graceframework.plugins:async" | ||
implementation "org.graceframework.plugins:cache" | ||
implementation "org.graceframework.plugins:hibernate5" | ||
implementation "org.hibernate:hibernate-core:$hibernateCoreVersion" | ||
implementation "org.hibernate:hibernate-ehcache:$hibernateCoreVersion" | ||
implementation "org.graceframework.plugins:database-migration" | ||
implementation "org.graceframework.plugins:events" | ||
implementation "org.graceframework.plugins:views-json" | ||
implementation "org.graceframework.plugins:views-json-templates" | ||
console "org.graceframework:grace-console" | ||
profile "org.graceframework.profiles:rest-api" | ||
// implementation "org.graceframework.plugins:fields" | ||
// implementation "org.graceframework:grace-plugin-gsp" | ||
implementation "org.graceframework.plugins:hibernate" | ||
// implementation "org.graceframework.plugins:scaffolding" | ||
runtimeOnly "org.graceframework:grace-events-rxjava" | ||
runtimeOnly "org.graceframework:grace-async-rxjava" | ||
profile "org.graceframework.profiles:web" | ||
runtimeOnly "org.graceframework.plugins:asset-pipeline-plugin:6.1.0-M1" | ||
runtimeOnly "com.h2database:h2" | ||
runtimeOnly "org.apache.tomcat:tomcat-jdbc" | ||
testImplementation "org.graceframework:grace-test-support" | ||
testImplementation "org.mockito:mockito-core" | ||
testImplementation "org.graceframework.plugins:geb" | ||
testImplementation "org.seleniumhq.selenium:selenium-remote-driver:4.2.2" | ||
testImplementation "org.seleniumhq.selenium:selenium-api:4.2.2" | ||
testImplementation "org.seleniumhq.selenium:selenium-support:4.2.2" | ||
testRuntimeOnly "org.seleniumhq.selenium:selenium-chrome-driver:4.2.2" | ||
testRuntimeOnly "org.seleniumhq.selenium:selenium-firefox-driver:4.2.2" | ||
} | ||
|
||
java { | ||
toolchain { | ||
languageVersion = JavaLanguageVersion.of(17) | ||
} | ||
} | ||
|
||
tasks.withType(Jar) { | ||
configure { | ||
duplicatesStrategy = DuplicatesStrategy.INCLUDE | ||
} | ||
} | ||
|
||
testImplementation "org.graceframework:grace-plugin-testing" | ||
testImplementation "org.graceframework:grace-gorm-testing-support" | ||
testImplementation "org.graceframework:grace-web-testing-support" | ||
testImplementation "io.micronaut:micronaut-http-client:$micronautVersion" | ||
tasks.withType(GroovyCompile) { | ||
configure(groovyOptions) { | ||
forkOptions.jvmArgs = ['-Xmx1024m'] | ||
} | ||
} | ||
|
||
tasks.withType(Test) { | ||
useJUnitPlatform() | ||
} | ||
|
||
webdriverBinaries { | ||
chromedriver { | ||
version = '126.0.6478.126' | ||
fallbackTo32Bit = true | ||
} | ||
geckodriver '0.33.0' | ||
} | ||
|
||
bootRun { | ||
jvmArgs('-Dspring.output.ansi.enabled=always') | ||
sourceResources sourceSets.main | ||
tasks.withType(Test) { | ||
systemProperty "geb.env", System.getProperty('geb.env') | ||
systemProperty "geb.build.reportsDir", reporting.file("geb/integrationTest") | ||
systemProperty 'webdriver.chrome.driver', System.getProperty('webdriver.chrome.driver') | ||
systemProperty 'webdriver.gecko.driver', System.getProperty('webdriver.gecko.driver') | ||
} |
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,13 @@ | ||
repositories { | ||
mavenCentral() | ||
maven { url "https://repo.gradle.org/gradle/libs-releases" } | ||
maven { url "https://plugins.gradle.org/m2/" } | ||
} | ||
|
||
dependencies { | ||
implementation "org.graceframework:grace-gradle-plugin:2023.1.0-M1" | ||
// implementation "org.graceframework.plugins:asset-pipeline-gradle:6.1.0-M1" | ||
implementation "org.graceframework.plugins:database-migration:6.1.0-M1" | ||
implementation "org.graceframework.plugins:views-gradle:6.1.0-M1" | ||
implementation "com.github.erdi:webdriver-binaries-gradle-plugin:3.2" | ||
} |
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,2 @@ | ||
databaseChangeLog = { | ||
} |
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 |
---|---|---|
@@ -1 +1,6 @@ | ||
graceVersion=2023.0.0-M1 | ||
graceVersion=2023.1.0-M1 | ||
groovyVersion=4.0.23 | ||
version=0.0.1-SNAPSHOT | ||
org.gradle.daemon=true | ||
org.gradle.parallel=true | ||
org.gradle.jvmargs=-Dfile.encoding=UTF-8 -Xmx1024M |
Binary file not shown.
8 changes: 8 additions & 0 deletions
8
examples/pubsub-demo/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,8 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionSha256Sum=31c55713e40233a8303827ceb42ca48a47267a0ad4bab9177123121e71524c26 | ||
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.