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

30 lines
628 B
Groovy
Raw Normal View History

2019-04-29 23:53:10 +08:00
description = "maxkey-web-manage"
2019-11-10 12:38:42 +08:00
//apply plugin: 'war'
2019-04-29 23:53:10 +08:00
apply plugin: 'eclipse-wtp'
dependencies {
//local jars
2019-05-25 23:39:07 +08:00
compile fileTree(dir: '../maxkey-lib/', include: '*/*.jar')
2019-04-29 23:53:10 +08:00
compile project(":maxkey-core")
compile project(":maxkey-jose-jwt")
compile project(":maxkey-dao")
compile project(":maxkey-client-sdk")
compile project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
2019-07-21 23:46:41 +08:00
compile project(":maxkey-protocols:maxkey-protocol-saml-2.0")
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
}
}
}