2024-11-20 21:59:23 +00:00
|
|
|
buildscript {
|
|
|
|
val kotlinVersion: String by extra
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
// don't know why but otherwise Quarkus is not able to index the classes of e-invoice-domain
|
|
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-13 14:46:36 +00:00
|
|
|
|
|
|
|
allprojects {
|
|
|
|
group = "net.codinux.invoicing"
|
|
|
|
version = "0.5.0-SNAPSHOT"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|