Added default max token for ChatGPT
This commit is contained in:
parent
e57f80f9d9
commit
37b4eb4343
4 changed files with 20 additions and 12 deletions
17
build.gradle
17
build.gradle
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue