2024-11-13 14:46:36 +00:00
|
|
|
pluginManagement {
|
|
|
|
val kotlinVersion: String by settings
|
2024-11-20 00:13:08 +00:00
|
|
|
val quarkusVersion: String by settings
|
2024-11-13 14:46:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
kotlin("jvm") version kotlinVersion
|
|
|
|
|
|
|
|
kotlin("plugin.allopen") version kotlinVersion
|
|
|
|
kotlin("plugin.noarg") version kotlinVersion
|
2024-11-20 00:13:08 +00:00
|
|
|
|
|
|
|
id("io.quarkus") version quarkusVersion
|
2024-11-13 14:46:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
rootProject.name = "eInvoicing"
|
|
|
|
|
2024-11-21 22:22:05 +00:00
|
|
|
include("e-invoice-domain")
|
2024-11-20 00:13:08 +00:00
|
|
|
|
2024-12-01 22:00:06 +00:00
|
|
|
include("invoice-creator")
|
|
|
|
|
2024-12-03 21:09:52 +00:00
|
|
|
include("e-invoice-spec-parser")
|
|
|
|
|
2024-11-20 00:13:08 +00:00
|
|
|
include("e-invoice-api")
|