Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for 480 #481

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ configurations {
}

dependencies {
implementation 'com.bertramlabs.plugins:asset-pipeline-core:3.4.6'
implementation 'com.bertramlabs.plugins:asset-pipeline-grails:3.4.6'
developmentOnly("org.springframework.boot:spring-boot-devtools")
// compile "org.springframework.boot:spring-boot-starter-logging"
implementation "org.springframework.boot:spring-boot-autoconfigure"
Expand Down Expand Up @@ -94,8 +96,6 @@ dependencies {
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
implementation group: 'commons-lang', name: 'commons-lang', version: '2.6'

implementation group: "com.bertramlabs.plugins", name: "asset-pipeline-gradle", version: "3.4.6"

//Angular profile wrapper needs
assets 'com.craigburke.angular:angular-annotate-asset-pipeline:2.4.1'
//Fork version in Atlas
Expand Down Expand Up @@ -171,6 +171,7 @@ webdriverBinaries {
}
geckodriver {
version = '0.31.0'
architecture = 'ARM64'
}

}
Expand Down
14 changes: 14 additions & 0 deletions geb-repo-arm64.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,26 @@
"version": "101.0.4951.41",
"url": "https://chromedriver.storage.googleapis.com/101.0.4951.41/chromedriver_mac64.zip"
},
{
"name": "chromedriver",
"platform": "linux",
"bit": "arm64",
"version": "101.0.4951.41",
"url": "https://chromedriver.storage.googleapis.com/101.0.4951.41/chromedriver_linux64.zip"
},
{
"name": "geckodriver",
"platform": "mac",
"bit": "arm64",
"version": "0.31.0",
"url": "https://github.com/mozilla/geckodriver/releases/download/v0.31.0/geckodriver-v0.31.0-macos-aarch64.tar.gz"
},
{
"name": "geckodriver",
"platform": "linux",
"bit": "arm64",
"version": "0.31.0",
"url": "https://github.com/mozilla/geckodriver/releases/download/v0.31.0/geckodriver-v0.31.0-linux64.tar.gz"
}
]

Expand Down