mirror of
https://gitee.com/dromara/MaxKey.git
synced 2025-12-06 08:59:10 +08:00
41 lines
912 B
Groovy
41 lines
912 B
Groovy
description = "maxkey-web-manage"
|
|
|
|
// Apply the java plugin to add support for Java
|
|
apply plugin: 'java'
|
|
//apply plugin: 'war'
|
|
apply plugin: 'eclipse-wtp'
|
|
apply plugin: 'com.bmuschko.tomcat-base'
|
|
apply plugin: 'com.bmuschko.tomcat'
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath "com.bmuschko:gradle-tomcat-plugin:2.2.3"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(":maxkey-core")
|
|
compile project(":maxkey-dao")
|
|
compile project(":maxkey-client-sdk")
|
|
compile project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
|
|
compile project(":maxkey-protocols:maxkey-protocol-saml-2.0")
|
|
compile project(":maxkey-identitys:maxkey-identity-scim")
|
|
compile project(":maxkey-identitys:maxkey-identity-kafka")
|
|
|
|
}
|
|
|
|
eclipse {
|
|
|
|
wtp {
|
|
component {
|
|
|
|
//define context path, default to project folder name
|
|
contextPath = 'maxkey-mgt'
|
|
|
|
}
|
|
|
|
}
|
|
} |