Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
076b04a
Adding in task name to collection and adapting gsp pages
davidmilward Jun 26, 2018
3f7ef93
Added basic code to export validated record list as csv file
davidmilward Jun 28, 2018
71e674f
Update to use the Excel plugin
davidmilward Jun 28, 2018
98a94c7
Added in Excel Plugin
davidmilward Jun 29, 2018
fe540aa
datasetName in a GormService and test
sdelamo Jun 29, 2018
fa81307
CSV Export
sdelamo Jun 29, 2018
3674587
excel
sdelamo Jun 29, 2018
7d22501
remove export valid excel method
sdelamo Jun 29, 2018
a7b0162
fix unit test
sdelamo Jun 29, 2018
f3f2ec3
revert JDBC_ accidental change
sdelamo Jun 29, 2018
b1782b8
Define chromedriver version in gradle.properties
sdelamo Jun 29, 2018
6a4ada9
Define gecko driver version in gradle.properties
sdelamo Jun 29, 2018
5e1ca3b
remove spring.transactionaManagement.proxies conf
sdelamo Jun 29, 2018
14cb7a6
Define firefox headless geb.env
sdelamo Jun 29, 2018
65d8af5
Bump up Grails to 3.3.6
sdelamo Jun 29, 2018
1e0736e
Bump up GORM to 6.1.10
sdelamo Jun 29, 2018
bac2264
Fix integration test
sdelamo Jun 29, 2018
749d9b3
Force tests to use grails.env=test
sdelamo Jun 29, 2018
2ca566d
Three tabs
sdelamo Jun 29, 2018
197c123
try to color red
sdelamo Jun 29, 2018
7aa0ea7
Excel Output - Updated output into 3 sections - Valid/Invalid and not…
davidmilward Jul 1, 2018
9b6945b
Added excel export for minimal output
davidmilward Jul 2, 2018
106b532
Update
davidmilward Jul 2, 2018
5f5d9b7
bugfix to prevent crash when you haven't validated the records and ex…
amilward Jul 9, 2018
595bc71
Merge branch 'master' into adam-design-bugfix
amilward Jul 9, 2018
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
9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ apply plugin: "org.grails.plugins.views-json"
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
jcenter()
}

dependencies {
Expand Down Expand Up @@ -86,6 +87,9 @@ dependencies {

testCompile "com.stehno.ersatz:ersatz:$ersatzVersion:safe@jar"
testCompile "org.hamcrest:hamcrest-library:$hamcrestVersion"

compile "builders.dsl:spreadsheet-builder-poi:$spreadsheetBuilderVersion"
compile "builders.dsl:spreadsheet-builder-groovy:$spreadsheetBuilderVersion"
}

bootRun {
Expand All @@ -95,8 +99,8 @@ bootRun {
}

webdriverBinaries {
chromedriver '2.36'
geckodriver '0.18.0'
chromedriver "${chromedriverVersion}"
geckodriver "${geckodriverVersion}"
}

test {
Expand All @@ -109,6 +113,7 @@ integrationTest {

tasks.withType(Test) {
systemProperties System.properties
systemProperty "grails.env", 'test'
systemProperty "geb.env", System.getProperty('geb.env')
systemProperty "geb.build.reportsDir", reporting.file("geb/integrationTest")
beforeTest { descriptor -> logger.quiet " -- $descriptor" }
Expand Down
29 changes: 17 additions & 12 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
grailsVersion=3.3.2
gormVersion=6.1.8.RELEASE
#Tue Jun 26 14:44:22 BST 2018
jsonViewsVersion=1.2.7
webdriverBinariesGradleVersion=1.4
grailsWrapperVersion=1.0.0
grailsVersion=3.3.6
hamcrestVersion=1.3
seleniumVersion=3.6.0
gradleWrapperVersion=3.5
droolsVersion=7.5.0.Final
okHttpVersion=3.9.1
moshiVersion=1.5.0
mysqlVersion=5.1.46
gormVersion=6.1.10.RELEASE
grailsExecutorVersion=0.4
seleniumVersion=3.6.0
assetPipelineVersion=2.14.8
webdriverBinariesGradleVersion=1.4
poiVersion=3.17
jsonViewsVersion=1.2.7
mysqlVersion=5.1.46
ersatzVersion=1.6.2
hamcrestVersion=1.3
assetPipelineVersion=2.14.8
okHttpVersion=3.9.1
moshiVersion=1.5.0
droolsVersion=7.5.0.Final
chromedriverVersion=2.40
geckodriverVersion=0.21.0
spreadsheetBuilderVersion=1.0.5
poiVersion=3.16
6 changes: 2 additions & 4 deletions grails-app/conf/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ grails:
profile: web
codegen:
defaultPackage: uk.co.metadataconsulting.sentinel
spring:
transactionManagement:
proxies: false
gorm:
reactor:
# Whether to translate GORM events into Reactor events
Expand Down Expand Up @@ -65,6 +62,7 @@ grails:
xml:
- text/xml
- application/xml

urlmapping:
cache:
maxsize: 1000
Expand Down Expand Up @@ -106,7 +104,7 @@ dataSource:
environments:
development:
dataSource:
dbCreate: update
dbCreate: create
url: '${JDBC_CONNECTION_STRING}'
test:
dataSource:
Expand Down
Loading