Слияние кода завершено, страница обновится автоматически
pluginManagement {
val defaultSpringBootBomVersion: String by settings
plugins {
// A Gradle plugin that provides Maven-like dependency management and exclusions
// @see https://docs.spring.io/dependency-management-plugin/docs/1.1.7/reference/html/#getting-started
id("io.spring.dependency-management") version "1.1.7" apply false
id("org.springframework.boot") version defaultSpringBootBomVersion apply false
}
repositories {
maven {
url = uri("https://maven.aliyun.com/repository/gradle-plugin")
name = "aliyunGradlePlugin"
}
gradlePluginPortal()
mavenCentral()
mavenLocal()
}
}
// modules
include ("jt-core")
include ("jt-808-server-support")
include ("jt-808-server-spring-boot-autoconfigure")
include ("jt-808-server-spring-boot-starter-boot2")
include ("jt-808-server-spring-boot-starter")
include ("jt-1078-server-support")
include ("jt-1078-server-spring-boot-autoconfigure")
include ("jt-1078-server-spring-boot-starter-boot2")
include ("jt-1078-server-spring-boot-starter")
include ("dashboard")
include ("dashboard:jt-dashboard-common")
include ("dashboard:jt-dashboard-server")
include ("dashboard:jt-dashboard-server-spring-boot-starter")
include ("dashboard:jt-dashboard-client")
include ("dashboard:jt-dashboard-client-spring-boot-starter")
// samples
include ("samples")
include ("samples:jt-808-attachment-server-sample")
include ("samples:jt-sample-common")
include ("samples:jt-808-server-sample-debug")
include ("samples:jt-808-server-sample-bare")
include ("samples:jt-808-server-sample-bare-boot3")
include ("samples:jt-808-server-sample-customized")
include ("samples:jt-808-server-sample-annotation")
include ("samples:jt-808-client-sample-debug")
include ("samples:jt-1078-server-sample-webflux-boot3")
include ("samples:jt-1078-server-sample-webmvc-boot3")
// demos
include ("demos")
include ("demos:jt-demo-808-server-webflux-boot3")
include ("demos:jt-demo-808-server-webmvc-boot3")
include ("demos:jt-demo-1078-server-webflux-boot3")
include ("demos:jt-demo-1078-server-webmvc-boot3")
include ("demos:jt-demo-dashboard-webflux-boot3")
include ("demos:jt-demo-dashboard-webmvc-boot3")
rootProject.name = "jt-framework"
// Change default "build.gradle" file to "${project.name}.gradle" recursively
setBuildFileName(rootProject)
fun setBuildFileName (project: ProjectDescriptor) {
project.children.forEach {
it.buildFileName = "${it.name}.gradle.kts"
assert(it.projectDir.isDirectory())
assert(it.buildFile.isFile())
setBuildFileName(it)
}
}
Вы можете оставить комментарий после Вход в систему
Неприемлемый контент может быть отображен здесь и не будет показан на странице. Вы можете проверить и изменить его с помощью соответствующей функции редактирования.
Если вы подтверждаете, что содержание не содержит непристойной лексики/перенаправления на рекламу/насилия/вульгарной порнографии/нарушений/пиратства/ложного/незначительного или незаконного контента, связанного с национальными законами и предписаниями, вы можете нажать «Отправить» для подачи апелляции, и мы обработаем ее как можно скорее.
Опубликовать ( 0 )