32 lines
659 B
Kotlin
32 lines
659 B
Kotlin
/*
|
|
* JavaFx Examples
|
|
*
|
|
* Copyright (c) 2021. Elex. All Rights Reserved.
|
|
* https://www.elex-project.com/
|
|
*/
|
|
|
|
buildscript {
|
|
repositories {
|
|
maven {
|
|
name = "Nexus 3 Repository"
|
|
url = uri(project.findProperty("repo.url") as String)
|
|
credentials {
|
|
username = project.findProperty("repo.username") as String
|
|
password = project.findProperty("repo.password") as String
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
base
|
|
id("com.github.ben-manes.versions") version "0.51.0"
|
|
}
|
|
|
|
subprojects{
|
|
group = "com.elex-project"
|
|
version = "1.0-SNAPSHOT"
|
|
description = ""//todo
|
|
|
|
}
|