@@ -19,26 +19,29 @@ buildscript {
19
19
}
20
20
dependencies {
21
21
classpath " org.grails:grails-gradle-plugin:$grailsVersion "
22
- classpath " com.bertramlabs.plugins:asset-pipeline-gradle:2.14.1"
23
- classpath " org.grails.plugins:hibernate5:${ gormVersion-".RELEASE"} "
22
+ classpath " com.bertramlabs.plugins:asset-pipeline-gradle:3.3.2"
23
+ classpath " org.grails.plugins:hibernate5:7.0.2"
24
+ classpath ' org.grails.plugins:quartz:2.0.13'
24
25
}
25
26
}
26
27
27
28
plugins {
28
29
id " com.gorylenko.gradle-git-properties" version " 1.4.17"
29
30
}
30
31
31
- version " 1.6"
32
+
33
+ version " 2.0.0-SNAPSHOT"
32
34
group " au.org.ala"
33
35
34
36
apply plugin :" eclipse"
35
37
apply plugin :" idea"
36
38
apply plugin :" war"
37
39
apply plugin :" org.grails.grails-web"
38
40
apply plugin :" org.grails.grails-gsp"
39
- apply plugin :" asset-pipeline"
41
+ apply plugin :" com.bertramlabs. asset-pipeline"
40
42
41
- apply from : ' https://raw.githubusercontent.com/AtlasOfLivingAustralia/travis-build-configuration/master/travis_grails_publish.gradle'
43
+ // apply from: 'https://raw.githubusercontent.com/AtlasOfLivingAustralia/travis-build-configuration/master/travis_grails_publish.gradle'
44
+ apply from : " ${ project.projectDir} /gradle/publish.gradle"
42
45
43
46
sourceCompatibility = 1.8
44
47
targetCompatibility = 1.8
@@ -75,20 +78,21 @@ dependencies {
75
78
compile " org.grails:grails-plugin-services"
76
79
compile " org.grails:grails-plugin-url-mappings"
77
80
compile " org.grails:grails-plugin-interceptors"
78
- compile " org.grails.plugins:cache"
79
81
compile " org.grails.plugins:async"
80
82
compile " org.grails.plugins:scaffolding"
81
83
compile " org.grails.plugins:events"
82
84
compile " org.grails.plugins:hibernate5"
83
- compile " org.hibernate:hibernate-core:5.1.16.Final"
84
- compile " org.hibernate:hibernate-ehcache:5.1.16.Final"
85
+ // compile "org.hibernate:hibernate-core:5.4.0.Final"
86
+ // compile "org.hibernate:hibernate-ehcache:5.4.0.Final"
87
+ compile " org.hibernate:hibernate-jcache"
88
+
85
89
compile " org.grails.plugins:gsp"
86
90
console " org.grails:grails-console"
87
91
profile " org.grails.profiles:web"
88
92
runtime " org.glassfish.web:el-impl:2.1.2-b03"
89
93
runtime " com.h2database:h2"
90
94
runtime " org.apache.tomcat:tomcat-jdbc"
91
- runtime " com.bertramlabs.plugins:asset-pipeline-grails:2.15.1 "
95
+ runtime " com.bertramlabs.plugins:asset-pipeline-grails:3.3.2 "
92
96
93
97
// compile "org.grails.plugins:grails-plugin-converters" // only needed for grails 3.3
94
98
// testCompile "org.grails:grails-plugin-testing"
@@ -98,20 +102,20 @@ dependencies {
98
102
testCompile " org.grails:grails-test-mixins:3.3.0"
99
103
100
104
// Grails plugin dependencies
101
- runtime " org.grails.plugins:ala-bootstrap3:3.2.3 " , noCache
102
- compile " org.grails.plugins:ala-ws-security-plugin:2.0 " , noCache
103
- compile " org.grails.plugins:ala-ws-plugin:2 .0" , noCache
104
- compile " org.grails.plugins:ala-auth:3 .1.3 " , noCache
105
- compile " org.grails.plugins:ala-admin-plugin:2.1 "
105
+ runtime " org.grails.plugins:ala-bootstrap3:4.1.0 " , noCache
106
+ compile " org.grails.plugins:ala-ws-security-plugin:4.1.1 " , noCache
107
+ compile " org.grails.plugins:ala-ws-plugin:3.1 .0" , noCache
108
+ compile " org.grails.plugins:ala-auth:5 .1.0 " , noCache
109
+ compile " org.grails.plugins:ala-admin-plugin:2.3.0 "
106
110
// compile 'au.org.ala:userdetails-service-client:1.4.0' // TODO remove this line once updated version is included in ala-auth
107
111
108
- compile ' org.grails.plugins:external-config:1.1.1 '
109
- compile ' org.grails.plugins:mail:2 .0.0.RC6 '
112
+ compile ' org.grails.plugins:external-config:2.0.0 '
113
+ compile ' org.grails.plugins:mail:3 .0.0'
110
114
compile ' org.grails.plugins:http-builder-helper:1.0.2.ALA'
111
115
compile ' org.grails.plugins:schwartz-monitor:2.0.1.ALA-SNAPSHOT'
112
- compile ' org.grails.plugins:quartz:2.0.12 '
113
- compile ' org.grails.plugins:cache:4.0.1 '
114
- compile ' org.grails.plugins:cache-ehcache:3.0.0.M1 '
116
+ compile ' org.grails.plugins:quartz:2.0.13 '
117
+ compile ' org.grails.plugins:cache:4.0.2 '
118
+ compile ' org.grails.plugins:cache-ehcache:3.0.0'
115
119
116
120
// regular JAR dependencies
117
121
runtime ' mysql:mysql-connector-java:8.0.25'
@@ -127,11 +131,12 @@ dependencies {
127
131
// runtime 'org.apache.httpcomponents:httpclient:4.2.2'
128
132
compile ' com.jayway.jsonpath:json-path:0.5.6'
129
133
compile ' com.jayway.jsonpath:json-path-assert:0.5.6'
134
+ compile ' au.org.ala.plugins:openapi:1.1.0'
130
135
}
131
136
132
137
bootRun {
133
138
jvmArgs(' -Dspring.output.ansi.enabled=always' )
134
- addResources = true
139
+ sourceResources sourceSets . main
135
140
String springProfilesActive = ' spring.profiles.active'
136
141
systemProperty springProfilesActive, System . getProperty(springProfilesActive)
137
142
}
0 commit comments