24 lines
342 B
Kotlin
24 lines
342 B
Kotlin
/*
|
|
* JavaFx Examples
|
|
*
|
|
* Copyright (c) 2021. Elex. All Rights Reserved.
|
|
* https://www.elex-project.com/
|
|
*/
|
|
|
|
buildscript {
|
|
repositories {
|
|
maven {
|
|
url = uri(project.findProperty("repo.url") as String)
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
base
|
|
id("com.github.ben-manes.versions") version "0.39.0"
|
|
}
|
|
|
|
subprojects{
|
|
|
|
}
|