2020-11-10 00:42:41 +00:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
resolutionStrategy {
|
|
|
|
eachPlugin {
|
|
|
|
if (requested.id.namespace == "com.android" || requested.id.name == "kotlin-android-extensions") {
|
2022-03-13 22:25:49 +00:00
|
|
|
useModule("com.android.tools.build:gradle:4.0.2")
|
2020-11-10 00:42:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-13 02:03:12 +00:00
|
|
|
|
|
|
|
plugins {
|
2022-03-13 22:25:49 +00:00
|
|
|
id("io.quarkus") version "1.9.2.Final" // TODO: why doesn't he find quarkusVersion?
|
2020-11-13 02:03:12 +00:00
|
|
|
}
|
2020-11-10 00:42:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
rootProject.name = "EpcQrCode"
|
|
|
|
|
|
|
|
|
|
|
|
include(":EpcQrCode")
|
|
|
|
include(":EpcQrCodeAndroidApp")
|
|
|
|
include(":EpcQrCodeJavaFxApp")
|
2020-11-13 02:03:12 +00:00
|
|
|
include(":EpcQrCodeRest")
|