Added default max token for ChatGPT

This commit is contained in:
Erik C. Thauvin 2023-05-21 00:56:47 -07:00
parent e57f80f9d9
commit 37b4eb4343
4 changed files with 20 additions and 12 deletions

View file

@ -193,19 +193,26 @@ incrementBuildMeta {
}
}
koverReport {
defaults {
xml {
onCheck = true
}
html {
onCheck = true
}
}
}
sonarqube {
properties {
property('sonar.organization', 'ethauvin-github')
property('sonar.projectKey', 'ethauvin_mobibot')
property('sonar.host.url', 'https://sonarcloud.io')
property('sonar.coverage.jacoco.xmlReportPaths', "${project.buildDir}/reports/kover/xml/report.xml")
property('sonar.coverage.jacoco.xmlReportPaths', "${project.buildDir}/reports/kover/report.xml")
}
}
tasks.sonar {
dependsOn 'koverReport'
}
tasks.register('copyToDeploy', Copy) {
from('properties', jar)
into deployDir