Files
MaxKey/maxkey-web-manage/build.gradle

42 lines
982 B
Groovy
Raw Normal View History

2019-04-29 23:53:10 +08:00
description = "maxkey-web-manage"
2019-12-09 00:25:20 +08:00
// Apply the java plugin to add support for Java
apply plugin: 'java'
2019-11-10 12:38:42 +08:00
//apply plugin: 'war'
2019-04-29 23:53:10 +08:00
apply plugin: 'eclipse-wtp'
2019-12-09 00:25:20 +08:00
apply plugin: 'com.bmuschko.tomcat-base'
apply plugin: 'com.bmuschko.tomcat'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "com.bmuschko:gradle-tomcat-plugin:2.2.3"
}
}
2019-04-29 23:53:10 +08:00
dependencies {
compile project(":maxkey-core")
compile project(":maxkey-persistence")
2019-04-29 23:53:10 +08:00
compile project(":maxkey-client-sdk")
compile project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
2020-06-13 12:29:27 +08:00
compile project(":maxkey-protocols:maxkey-protocol-saml-2.0")
compile project(":maxkey-identitys:maxkey-identity-scim")
compile project(":maxkey-identitys:maxkey-identity-kafka")
compile project(":maxkey-identitys:maxkey-identity-rest")
2019-04-29 23:53:10 +08:00
}
eclipse {
wtp {
component {
//define context path, default to project folder name
2019-06-28 07:33:01 +08:00
contextPath = 'maxkey-mgt'
2019-04-29 23:53:10 +08:00
}
}
}