Skip to content

Commit

Permalink
Merge pull request #2966 from AtlasOfLivingAustralia/dev
Browse files Browse the repository at this point in the history
Preparing v3.0
  • Loading branch information
chrisala authored Aug 14, 2023
2 parents 51434e0 + 8efc297 commit 73a3a57
Show file tree
Hide file tree
Showing 176 changed files with 35,434 additions and 31,531 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Grails 4: [![Build Status](https://travis-ci.com/AtlasOfLivingAustralia/fieldcap

## About
MERIT is a web application designed to collect and store planning, monitoring and reporting data associated with natural resource management projects.
It is currently in use by the Australian Government Department of the environment and energy.
It is currently in use by the Australian Government.

## General Information
### Technologies
* Grails framework 4.0.10
* Grails framework 5.x
* Knockout JS
* Bootstap 4

Expand Down Expand Up @@ -73,6 +73,7 @@ Run MERIT with additonal parameters:
Note the leading colon before the bootRun task - this is required as when inplace=true gradle is configured in a multi-project build configuration.

# MacOS Catalina
(This is only relevant to versions of MERIT prior to 3.0. From 3.0, MERIT will look for development config in $HOME/data/)
if you getting this error in MacOS
```
unable to create directory data/fieldcature/ehcache
Expand Down
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ dependencies {
providedCompile "io.methvin:directory-watcher:0.4.0"

if (!Boolean.valueOf(inplace)) {
implementation "org.grails.plugins:ecodata-client-plugin:6.0"
implementation "org.grails.plugins:ecodata-client-plugin:6.1"
}
}

Expand Down Expand Up @@ -298,6 +298,12 @@ tasks.withType(Test) {
systemProperty "webdriver.gecko.driver", System.getProperty('webdriver.gecko.driver')
}

integrationTest {
// When tests are failing github actions is producing no log file at all.
// I'm theorising we are exceeding a log limit so trying to end tests on first failure.
failFast = true
}


bootJar {
duplicatesStrategy(DuplicatesStrategy.EXCLUDE)
Expand Down
Loading

0 comments on commit 73a3a57

Please sign in to comment.