Skip to content

Commit 8355222

Browse files
authored
Merge pull request #182 from AtlasOfLivingAustralia/feature/issue181
Feature/issue181
2 parents 4321360 + c7595ae commit 8355222

File tree

17 files changed

+361
-186
lines changed

17 files changed

+361
-186
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
- name: Validate Gradle wrapper
3535
uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b
3636

37-
- name: Build and run clover coverage report with Gradle
37+
- name: Run tests and jacoco coverage report with Gradle
3838
uses: gradle/gradle-build-action@0d13054264b0bb894ded474f08ebb30921341cee
3939
with:
40-
arguments: -PenableClover=true cloverGenerateReport
40+
arguments: -PenableJacoco=true check
4141

4242
- name: Run javascript unit tests
4343
run: node_modules/karma/bin/karma start karma.conf.js --single-run --browsers ChromeHeadless

.travis.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
dist: bionic
22
language: groovy
33
jdk:
4-
- openjdk8
4+
- openjdk11
55
sudo: false
66
addons:
77
chrome: stable
@@ -15,6 +15,7 @@ branches:
1515
- devg3
1616
- grails4
1717
- grails4-bs-branch
18+
- grails5
1819

1920
before_cache:
2021
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
@@ -36,7 +37,7 @@ before_script:
3637
- npm run-script package-turf
3738
script:
3839
- cd $TRAVIS_BUILD_DIR
39-
- ./gradlew -PenableClover=true cloverGenerateReport
40+
#- ./gradlew -PenableClover=true cloverGenerateReport
4041
- node_modules/karma/bin/karma start karma.conf.js --single-run --browsers ChromeHeadless
4142

4243
# need to gradlew clean before publishing to rebuild without the clover instrumentation.

build.gradle

+59-73
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,16 @@ buildscript {
66
gradlePluginPortal()
77
}
88
dependencies {
9-
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
9+
classpath "org.grails:grails-gradle-plugin:$grailsGradlePluginVersion"
1010
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'
1212
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"
1414
}
1515
}
16+
plugins {
17+
id 'jacoco'
18+
}
1619

1720

1821
version "5.3-SNAPSHOT"
@@ -21,14 +24,16 @@ group "org.grails.plugins"
2124
apply plugin:"eclipse"
2225
apply plugin:"idea"
2326
apply plugin:"org.grails.grails-plugin"
24-
apply plugin:"org.grails.grails-plugin-publish"
27+
apply from: "${project.projectDir}/gradle/publish.gradle"
2528
apply plugin:"org.grails.grails-gsp"
2629
apply plugin:"asset-pipeline"
27-
apply plugin:"com.energizedwork.webdriver-binaries"
30+
apply plugin:"com.github.erdi.webdriver-binaries"
2831
if (Boolean.valueOf(enableClover)) {
2932
apply from: "${project.projectDir}/gradle/clover.gradle"
3033
}
31-
apply plugin:"maven-publish"
34+
if (Boolean.valueOf(enableJacoco)) {
35+
apply from: "${project.projectDir}/gradle/jacoco.gradle"
36+
}
3237

3338

3439
repositories {
@@ -48,47 +53,50 @@ configurations {
4853

4954
dependencies {
5055
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+
6978
console "org.grails:grails-console"
7079
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"
8492

8593

8694
if (!inplace) {
87-
compile ("org.grails.plugins:ala-map-plugin:4.0.1") {
95+
implementation ("org.grails.plugins:ala-map-plugin:4.0.1") {
8896
exclude group: 'com.bertramlabs.plugins', module: 'asset-pipeline-grails'
8997
}
9098
}
91-
compile "com.bertramlabs.plugins:asset-pipeline-core:$assetPipelineVersion"
99+
implementation "com.bertramlabs.plugins:asset-pipeline-core:$assetPipelineVersion"
92100
}
93101

94102
tasks.withType(Test) {
@@ -114,43 +122,10 @@ assets {
114122
packagePlugin = true
115123
}
116124

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-
150125
if (inplace) {
151126
grails {
152127
plugins {
153-
compile (project(':ala-map-plugin'))
128+
implementation (project(':ala-map-plugin'))
154129
}
155130
}
156131
}
@@ -163,6 +138,17 @@ task _Events {
163138
}
164139
}
165140

141+
tasks.withType(GroovyCompile) {
142+
configure(groovyOptions) {
143+
forkOptions.jvmArgs = ['-Xmx1024m']
144+
}
145+
}
146+
147+
tasks.withType(Test) {
148+
useJUnitPlatform()
149+
}
150+
151+
166152
// the tasks used here for dependsOn may be incomplete/incorrect
167153
assetCompile.dependsOn(_Events)
168154
compileGroovy.dependsOn(_Events)

gradle.properties

+14-13
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
grailsVersion=4.0.10
2-
gormVersion=7.0.2
3-
grailsWrapperVersion=1.0.0
4-
gradleWrapperVersion=5.0
5-
assetPipelineVersion=3.0.10
6-
gebVersion=2.3
7-
seleniumVersion=3.12.0
8-
webdriverBinariesVersion=1.4
9-
hibernateCoreVersion=5.1.5.Final
10-
chromeDriverVersion=2.44
11-
geckodriverVersion=0.23.0
12-
seleniumSafariDriverVersion=3.14.0
13-
org.gradle.jvmargs=-Xss2048k -Xmx1024M
1+
groovyVersion=3.0.11
2+
grailsVersion=5.3.2
3+
gorm.version=7.1.2
4+
grailsGradlePluginVersion=5.3.0
5+
org.gradle.daemon=true
6+
org.gradle.parallel=true
7+
#grailsWrapperVersion=1.0.0
8+
#gradleWrapperVersion=5.0
9+
assetPipelineVersion=3.4.7
10+
seleniumVersion=4.0.0
11+
webdriverBinariesVersion=2.6
12+
seleniumSafariDriverVersion=4.0.0
13+
org.gradle.jvmargs=-Dfile.encoding=UTF-8 -Xss2048k -Xmx1024M
1414
exploded=true
1515
enableClover=false
16+
enableJacoco=true

gradle/jacoco.gradle

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
apply plugin:"jacoco"
2+
jacoco {
3+
toolVersion = "0.8.8"
4+
}
5+
6+
test {
7+
useJUnitPlatform()
8+
jacoco {
9+
excludes = ['**/Application.groovy',
10+
'**/BootStrap.groovy',
11+
'**/UrlMappings.groovy',
12+
'**/*GrailsPlugin.groovy',
13+
'**/*Mock.groovy',
14+
'com.skedgo.converter.*']
15+
}
16+
finalizedBy jacocoTestReport // report is always generated after tests run
17+
}
18+
19+
jacocoTestReport {
20+
dependsOn test
21+
finalizedBy jacocoTestCoverageVerification // report is always generated after tests run
22+
23+
reports {
24+
xml.enabled false
25+
csv.enabled false
26+
html.destination file("${buildDir}/reports/jacocoHtml")
27+
}
28+
}
29+
30+
jacocoTestCoverageVerification {
31+
dependsOn test
32+
violationRules {
33+
rule {
34+
limit {
35+
minimum = 0.2
36+
}
37+
}
38+
}
39+
}

gradle/publish.gradle

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
apply plugin:"maven-publish"
2+
publishing {
3+
repositories {
4+
maven {
5+
name 'GitHubPackages'
6+
url uri("https://maven.pkg.github.com/atlasoflivingaustralia/ecodata-client-plugin")
7+
credentials {
8+
username = System.getenv('GITHUB_ACTOR')
9+
password = System.getenv('GITHUB_TOKEN')
10+
}
11+
}
12+
}
13+
publications {
14+
mavenJar(MavenPublication) {
15+
pom.withXml {
16+
def pomNode = asNode()
17+
pomNode.dependencyManagement.replaceNode {}
18+
19+
// simply remove dependencies without a version
20+
// version-less dependencies are handled with dependencyManagement
21+
// see https://github.com/spring-gradle-plugins/dependency-management-plugin/issues/8 for more complete solutions
22+
pomNode.dependencies.dependency.findAll {
23+
it.version.text().isEmpty()
24+
}.each {
25+
it.replaceNode {}
26+
}
27+
}
28+
from components.java
29+
}
30+
}
31+
}

gradle/wrapper/gradle-wrapper.jar

3.38 KB
Binary file not shown.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)