Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into feat/release-to-github
Browse files Browse the repository at this point in the history
  • Loading branch information
clemens-tolboom committed Dec 13, 2023
2 parents 75cc179 + 23afbc5 commit 33c29b7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion armadillo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ dependencies {

jacocoTestReport {
reports {
xml.enabled true
xml.required
}
dependsOn test
}
Expand Down
12 changes: 5 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ springBoot {
buildInfo()
}
bootJar {
mainClassName = mainClassName
mainClass = mainClassName
manifest {
attributes(
'Specification-Version': project.version.toString(),
Expand All @@ -105,7 +105,7 @@ bootJar {

//define run
application {
mainClass.set(mainClassName)
mainClass.set(rootProject.mainClassName)
}

//define release
Expand All @@ -123,8 +123,8 @@ docker {
name imageName
tags 'latest', tagName
dockerfile file('Dockerfile')
files bootJar.archivePath
buildArgs(['JAR_FILE': "${bootJar.archiveName}"])
files bootJar.archiveFile
buildArgs(['JAR_FILE': "${bootJar.archiveFile.get().asFile.name}"])
}
dockerPrepare.dependsOn bootJar

Expand All @@ -141,9 +141,7 @@ task jacocoMergedReport(type: JacocoReport) {
classDirectories.setFrom files(subprojects.sourceSets.main.output)
executionData.setFrom project.fileTree(dir: '.', include: '**/build/jacoco/test.exec')
reports {
xml.enabled true
csv.enabled false
html.enabled false
xml.required
}
}

Expand Down
2 changes: 1 addition & 1 deletion r/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ build.dependsOn spotlessApply

jacocoTestReport {
reports {
xml.enabled true
xml.required
}
dependsOn test
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ requests==2.31.0
simple-term-menu==1.6.1
six==1.16.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
tzdata==2023.3; python_version >= '2'
urllib3==2.0.4; python_version >= '3.7'
urllib3==2.0.7; python_version >= '3.7'
wrapt==1.15.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'

0 comments on commit 33c29b7

Please sign in to comment.