21 lines
419 B
Kotlin
21 lines
419 B
Kotlin
/*
|
|
* Examples for Spring-boot
|
|
*
|
|
* Copyright (c) 2021-2021. Elex. All Rights Reserved.
|
|
* https://www.elex-project.com/
|
|
*/
|
|
|
|
buildscript {
|
|
repositories {
|
|
maven {
|
|
setUrl(project.findProperty("repo.url") as String)
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath ("com.jaredsburrows:gradle-license-plugin:0.9.7")
|
|
}
|
|
}
|
|
plugins {
|
|
id("com.github.ben-manes.versions") version "0.39.0"
|
|
}
|