Files
MaxKey/maxkey-webs/maxkey-web-mgt/build.gradle

69 lines
2.4 KiB
Groovy
Raw Normal View History

2024-04-06 21:09:05 +08:00
buildscript {
repositories {
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/'}
}
dependencies {
//springboot jar
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
plugins {
id 'org.springframework.boot' version "${springBootVersion}"
id "io.spring.dependency-management" version "1.0.11.RELEASE"
}
2021-07-31 19:42:31 +08:00
description = "maxkey-web-mgt"
2019-04-29 23:53:10 +08:00
2024-04-06 21:09:05 +08:00
//springboot jar
apply plugin: 'io.spring.dependency-management'
2021-11-21 18:50:41 +08:00
//add support for Java
apply plugin: 'java'
2020-12-22 07:46:56 +08:00
2024-04-06 21:09:05 +08:00
bootJar {
dependsOn jar
archiveBaseName = 'maxkey-mgt-boot'
version = "${project.version}-ga"
mainClass = 'org.dromara.maxkey.MaxKeyMgtApplication'
manifest {
attributes(
"Implementation-Title": project.name,
"Implementation-Vendor": project.vendor,
"Created-By": project.author,
"Implementation-Date": java.time.ZonedDateTime.now(),
"Implementation-Version": project.version
)
}
}
2019-04-29 23:53:10 +08:00
dependencies {
2021-04-17 09:44:10 +08:00
implementation project(":maxkey-common")
implementation project(":maxkey-core")
implementation project(":maxkey-persistence")
implementation project(":maxkey-starter:maxkey-starter-captcha")
implementation project(":maxkey-starter:maxkey-starter-ip2location")
implementation project(":maxkey-starter:maxkey-starter-otp")
implementation project(":maxkey-starter:maxkey-starter-sms")
implementation project(":maxkey-starter:maxkey-starter-web")
2021-04-17 09:44:10 +08:00
implementation project(":maxkey-authentications:maxkey-authentication-core")
2024-11-11 10:35:03 +08:00
implementation project(":maxkey-authentications:maxkey-authentication-provider-mgt")
2024-09-28 09:10:52 +08:00
implementation project(":maxkey-protocols:maxkey-protocol-authorize")
2021-04-17 09:44:10 +08:00
implementation project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
implementation project(":maxkey-protocols:maxkey-protocol-saml-2.0")
2024-04-06 21:09:05 +08:00
//synchronizers
2022-01-23 08:12:25 +08:00
implementation project(":maxkey-synchronizers:maxkey-synchronizer")
implementation project(":maxkey-synchronizers:maxkey-synchronizer-activedirectory")
2022-01-23 14:13:49 +08:00
implementation project(":maxkey-synchronizers:maxkey-synchronizer-feishu")
2022-10-16 17:23:34 +08:00
implementation project(":maxkey-synchronizers:maxkey-synchronizer-jdbc")
2022-01-23 08:12:25 +08:00
implementation project(":maxkey-synchronizers:maxkey-synchronizer-ldap")
implementation project(":maxkey-synchronizers:maxkey-synchronizer-workweixin")
implementation project(":maxkey-synchronizers:maxkey-synchronizer-dingtalk")
2024-04-06 21:09:05 +08:00
}