@@ -6,13 +6,16 @@ buildscript {
6
6
gradlePluginPortal()
7
7
}
8
8
dependencies {
9
- classpath " org.grails:grails-gradle-plugin:$g railsVersion "
9
+ classpath " org.grails:grails-gradle-plugin:$g railsGradlePluginVersion "
10
10
classpath " com.bertramlabs.plugins:asset-pipeline-gradle:$assetPipelineVersion "
11
- classpath ' com.bmuschko:gradle-clover-plugin:3.0.1 '
11
+ classpath ' com.bmuschko:gradle-clover-plugin:3.0.3 '
12
12
classpath ' org.grails.plugins:quartz:2.0.13'
13
- classpath " gradle.plugin.com.energizedwork .webdriver-binaries:webdriver-binaries-gradle-plugin:$webdriverBinariesVersion "
13
+ classpath " gradle.plugin.com.github.erdi .webdriver-binaries:webdriver-binaries-gradle-plugin:$webdriverBinariesVersion "
14
14
}
15
15
}
16
+ plugins {
17
+ id ' jacoco'
18
+ }
16
19
17
20
18
21
version " 5.3-SNAPSHOT"
@@ -21,14 +24,16 @@ group "org.grails.plugins"
21
24
apply plugin :" eclipse"
22
25
apply plugin :" idea"
23
26
apply plugin :" org.grails.grails-plugin"
24
- apply plugin : " org.grails.grails-plugin- publish"
27
+ apply from : " ${ project.projectDir } /gradle/ publish.gradle "
25
28
apply plugin :" org.grails.grails-gsp"
26
29
apply plugin :" asset-pipeline"
27
- apply plugin :" com.energizedwork .webdriver-binaries"
30
+ apply plugin :" com.github.erdi .webdriver-binaries"
28
31
if (Boolean . valueOf(enableClover)) {
29
32
apply from : " ${ project.projectDir} /gradle/clover.gradle"
30
33
}
31
- apply plugin :" maven-publish"
34
+ if (Boolean . valueOf(enableJacoco)) {
35
+ apply from : " ${ project.projectDir} /gradle/jacoco.gradle"
36
+ }
32
37
33
38
34
39
repositories {
@@ -48,47 +53,50 @@ configurations {
48
53
49
54
dependencies {
50
55
developmentOnly(" org.springframework.boot:spring-boot-devtools" )
51
- compile " org.springframework.boot:spring-boot-starter-logging"
52
- compile " org.springframework.boot:spring-boot-autoconfigure"
53
- compile " org.grails:grails-core"
54
- compile " org.springframework.boot:spring-boot-starter-actuator"
55
- compile " org.springframework.boot:spring-boot-starter-tomcat"
56
- compile " org.grails:grails-web-boot"
57
- compile " org.grails:grails-logging"
58
- compile " org.grails:grails-plugin-rest"
59
- compile " org.grails:grails-plugin-databinding"
60
- compile " org.grails:grails-plugin-i18n"
61
- compile " org.grails:grails-plugin-services"
62
- compile " org.grails:grails-plugin-url-mappings"
63
- compile " org.grails:grails-plugin-interceptors"
64
- compile " org.grails.plugins:cache"
65
- compile " org.grails.plugins:async"
66
- compile " org.grails.plugins:scaffolding"
67
- compile " org.grails.plugins:gsp"
68
- compile ' commons-io:commons-io:2.6'
56
+ implementation " org.springframework.boot:spring-boot-starter-logging"
57
+ implementation " org.springframework.boot:spring-boot-autoconfigure"
58
+ implementation " org.grails:grails-core"
59
+ implementation " org.springframework.boot:spring-boot-starter-actuator"
60
+ implementation " org.springframework.boot:spring-boot-starter-tomcat"
61
+ implementation " org.grails:grails-web-boot"
62
+ implementation " org.grails:grails-logging"
63
+ implementation " org.grails:grails-plugin-rest"
64
+ implementation " org.grails:grails-plugin-databinding"
65
+ implementation " org.grails:grails-plugin-i18n"
66
+ implementation " org.grails:grails-plugin-services"
67
+ implementation " org.grails:grails-plugin-url-mappings"
68
+ implementation " org.grails:grails-plugin-interceptors"
69
+ implementation " org.grails.plugins:cache"
70
+ implementation " org.grails.plugins:async"
71
+ implementation " org.grails.plugins:scaffolding"
72
+ implementation " org.grails.plugins:gsp"
73
+ implementation ' commons-io:commons-io:2.6'
74
+ implementation " org.grails.plugins:ala-auth:5.1.1"
75
+ implementation ' org.pac4j:pac4j-core:5.3.1'
76
+ implementation ' org.pac4j:pac4j-http:5.3.1'
77
+
69
78
console " org.grails:grails-console"
70
79
profile " org.grails.profiles:web-plugin"
71
- provided " org.grails:grails-plugin-services"
72
- provided " org.grails:grails-plugin-domain-class"
73
- compile " com.bertramlabs.plugins:asset-pipeline-grails:$assetPipelineVersion "
74
- testCompile " org.grails:grails-gorm-testing-support"
75
- testCompile " org.grails.plugins:geb"
76
- testCompile " org.grails:grails-web-testing-support"
77
- testCompile ' com.codeborne:phantomjsdriver:1.3.0'
78
- testCompile " org.seleniumhq.selenium:selenium-chrome-driver:$seleniumVersion "
79
- testRuntime " org.seleniumhq.selenium:selenium-firefox-driver:$seleniumVersion "
80
- testRuntime " org.seleniumhq.selenium:selenium-safari-driver:$seleniumSafariDriverVersion "
81
- testCompile " org.seleniumhq.selenium:selenium-remote-driver:$seleniumVersion "
82
- testCompile " org.seleniumhq.selenium:selenium-api:$seleniumVersion "
83
- testCompile " org.seleniumhq.selenium:selenium-support:$seleniumVersion "
80
+ implementation " org.grails:grails-plugin-services"
81
+ implementation " com.bertramlabs.plugins:asset-pipeline-grails:$assetPipelineVersion "
82
+ testImplementation " org.grails:grails-gorm-testing-support"
83
+ testImplementation " org.grails.plugins:geb"
84
+ testImplementation " org.grails:grails-web-testing-support"
85
+ testImplementation ' com.codeborne:phantomjsdriver:1.3.0'
86
+ testImplementation " org.seleniumhq.selenium:selenium-chrome-driver:$seleniumVersion "
87
+ testRuntimeOnly " org.seleniumhq.selenium:selenium-firefox-driver:$seleniumVersion "
88
+ testRuntimeOnly " org.seleniumhq.selenium:selenium-safari-driver:$seleniumSafariDriverVersion "
89
+ testImplementation " org.seleniumhq.selenium:selenium-remote-driver:$seleniumVersion "
90
+ testImplementation " org.seleniumhq.selenium:selenium-api:$seleniumVersion "
91
+ testImplementation " org.seleniumhq.selenium:selenium-support:$seleniumVersion "
84
92
85
93
86
94
if (! inplace) {
87
- compile (" org.grails.plugins:ala-map-plugin:4.0.1" ) {
95
+ implementation (" org.grails.plugins:ala-map-plugin:4.0.1" ) {
88
96
exclude group : ' com.bertramlabs.plugins' , module : ' asset-pipeline-grails'
89
97
}
90
98
}
91
- compile " com.bertramlabs.plugins:asset-pipeline-core:$assetPipelineVersion "
99
+ implementation " com.bertramlabs.plugins:asset-pipeline-core:$assetPipelineVersion "
92
100
}
93
101
94
102
tasks. withType(Test ) {
@@ -114,43 +122,10 @@ assets {
114
122
packagePlugin = true
115
123
}
116
124
117
-
118
- publishing {
119
- repositories {
120
- maven {
121
- name ' GitHubPackages'
122
- url uri(" https://maven.pkg.github.com/atlasoflivingaustralia/ecodata-client-plugin" )
123
- credentials {
124
- username = System . getenv(' GITHUB_ACTOR' )
125
- password = System . getenv(' GITHUB_TOKEN' )
126
- }
127
- }
128
- }
129
- publications {
130
- mavenJar(MavenPublication ) {
131
- pom. withXml {
132
- def pomNode = asNode()
133
- pomNode. dependencyManagement. replaceNode {}
134
-
135
- // simply remove dependencies without a version
136
- // version-less dependencies are handled with dependencyManagement
137
- // see https://github.com/spring-gradle-plugins/dependency-management-plugin/issues/8 for more complete solutions
138
- pomNode. dependencies. dependency. findAll {
139
- it. version. text(). isEmpty()
140
- }. each {
141
- it. replaceNode {}
142
- }
143
- }
144
- from components. java
145
-
146
- }
147
- }
148
- }
149
-
150
125
if (inplace) {
151
126
grails {
152
127
plugins {
153
- compile (project(' :ala-map-plugin' ))
128
+ implementation (project(' :ala-map-plugin' ))
154
129
}
155
130
}
156
131
}
@@ -163,6 +138,17 @@ task _Events {
163
138
}
164
139
}
165
140
141
+ tasks. withType(GroovyCompile ) {
142
+ configure(groovyOptions) {
143
+ forkOptions. jvmArgs = [' -Xmx1024m' ]
144
+ }
145
+ }
146
+
147
+ tasks. withType(Test ) {
148
+ useJUnitPlatform()
149
+ }
150
+
151
+
166
152
// the tasks used here for dependsOn may be incomplete/incorrect
167
153
assetCompile. dependsOn(_Events)
168
154
compileGroovy. dependsOn(_Events)
0 commit comments