Files
spring-boot-examples/build.gradle.kts
2024-06-12 13:11:58 +09:00

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"
}