-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dierk Koenig
committed
Oct 2, 2024
1 parent
d2cd65e
commit 3d2da70
Showing
104 changed files
with
43,444 additions
and
9 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,43 @@ | ||
# Simple workflow for deploying static content to GitHub Pages | ||
name: Deploy static content to Pages | ||
|
||
on: | ||
# Runs on pushes targeting the default branch | ||
push: | ||
branches: ["main"] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | ||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
# Single deploy job since we're just deploying | ||
deploy: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup Pages | ||
uses: actions/configure-pages@v3 | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v2 | ||
with: | ||
# Upload entire repository | ||
path: './docs' | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v2 |
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,14 @@ | ||
Thumbs.db | ||
.DS_Store | ||
.gradle | ||
build/ | ||
target/ | ||
out/ | ||
.idea | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.project | ||
.settings | ||
.classpath | ||
.factorypath |
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,23 @@ | ||
# webec_hs24 | ||
## Grails 6.2.0 Documentation | ||
|
||
- [User Guide](https://docs.grails.org/6.2.0/guide/index.html) | ||
- [API Reference](https://docs.grails.org/6.2.0/api/index.html) | ||
- [Grails Guides](https://guides.grails.org/index.html) | ||
--- | ||
|
||
## Feature asset-pipeline-grails documentation | ||
|
||
- [Grails Asset Pipeline Core documentation](https://www.asset-pipeline.com/manual/) | ||
|
||
## Feature scaffolding documentation | ||
|
||
- [Grails Scaffolding Plugin documentation](https://grails.github.io/scaffolding/latest/groovydoc/) | ||
|
||
- [https://grails-fields-plugin.github.io/grails-fields/latest/guide/index.html](https://grails-fields-plugin.github.io/grails-fields/latest/guide/index.html) | ||
|
||
## Feature geb documentation | ||
|
||
- [Grails Geb Functional Testing for Grails documentation](https://github.com/grails3-plugins/geb#readme) | ||
|
||
- [https://www.gebish.org/manual/current/](https://www.gebish.org/manual/current/) | ||
|
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,95 @@ | ||
plugins { | ||
id "groovy" | ||
id "org.grails.grails-web" | ||
id "org.grails.grails-gsp" | ||
id "com.github.erdi.webdriver-binaries" | ||
id "war" | ||
id "idea" | ||
id "com.bertramlabs.asset-pipeline" | ||
id "application" | ||
id "eclipse" | ||
} | ||
|
||
group = "rooms" | ||
|
||
repositories { | ||
mavenCentral() | ||
maven { url "https://repo.grails.org/grails/core/" } | ||
} | ||
|
||
configurations { | ||
all { | ||
resolutionStrategy.eachDependency { DependencyResolveDetails details-> | ||
if (details.requested.group == 'org.seleniumhq.selenium') { | ||
details.useVersion('4.19.1') | ||
} | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
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.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") | ||
compileOnly("io.micronaut:micronaut-inject-groovy") | ||
console("org.grails:grails-console") | ||
runtimeOnly("com.bertramlabs.plugins:asset-pipeline-grails:4.3.0") | ||
runtimeOnly("com.h2database:h2") | ||
runtimeOnly("org.apache.tomcat:tomcat-jdbc") | ||
runtimeOnly("org.fusesource.jansi:jansi:1.18") | ||
testImplementation("io.micronaut:micronaut-inject-groovy") | ||
testImplementation("org.grails:grails-gorm-testing-support") | ||
testImplementation("org.grails:grails-web-testing-support") | ||
testImplementation("org.grails.plugins:geb") | ||
// next line added | ||
implementation group: 'org.seleniumhq.selenium', name: 'selenium-safari-driver', version: '4.25.0' | ||
testImplementation("org.seleniumhq.selenium:selenium-api:4.19.1") | ||
testImplementation("org.seleniumhq.selenium:selenium-remote-driver:4.19.1") | ||
testImplementation("org.seleniumhq.selenium:selenium-support:4.19.1") | ||
testImplementation("org.spockframework:spock-core") | ||
testRuntimeOnly("org.seleniumhq.selenium:selenium-chrome-driver:4.19.1") | ||
testRuntimeOnly("org.seleniumhq.selenium:selenium-firefox-driver:4.19.1") | ||
testRuntimeOnly("org.seleniumhq.selenium:selenium-safari-driver:4.19.1") | ||
testImplementation("io.micronaut:micronaut-http-client") | ||
|
||
} | ||
|
||
application { | ||
mainClass.set("rooms.Application") | ||
} | ||
|
||
java { | ||
sourceCompatibility = JavaVersion.toVersion("11") | ||
} | ||
|
||
tasks.withType(Test) { | ||
useJUnitPlatform() | ||
systemProperty "geb.env", System.getProperty('geb.env') | ||
systemProperty "geb.build.reportsDir", reporting.file("geb/integrationTest") | ||
systemProperty 'webdriver.chrome.driver', "${System.getenv('CHROMEWEBDRIVER')}/chromedriver" | ||
systemProperty 'webdriver.gecko.driver', "${System.getenv('GECKOWEBDRIVER')}/geckodriver" | ||
} | ||
webdriverBinaries { | ||
chromedriver '122.0.6260.0' | ||
geckodriver '0.33.0' | ||
edgedriver '110.0.1587.57' | ||
} | ||
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,9 @@ | ||
repositories { | ||
mavenCentral() | ||
maven { url "https://repo.grails.org/grails/core/" } | ||
} | ||
dependencies { | ||
implementation("com.bertramlabs.plugins:asset-pipeline-gradle:4.3.0") | ||
implementation("org.grails:grails-gradle-plugin:6.1.2") | ||
implementation("org.grails.plugins:hibernate5:8.1.0") | ||
} |
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,7 @@ | ||
grailsVersion=6.2.0 | ||
grailsGradlePluginVersion=6.1.2 | ||
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.
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,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.4-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.