30 lines
628 B
Groovy
30 lines
628 B
Groovy
description = "maxkey-web-manage"
|
|
|
|
//apply plugin: 'war'
|
|
apply plugin: 'eclipse-wtp'
|
|
|
|
dependencies {
|
|
//local jars
|
|
compile fileTree(dir: '../maxkey-lib/', include: '*/*.jar')
|
|
|
|
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")
|
|
compile project(":maxkey-protocols:maxkey-protocol-saml-2.0")
|
|
|
|
}
|
|
|
|
eclipse {
|
|
|
|
wtp {
|
|
component {
|
|
|
|
//define context path, default to project folder name
|
|
contextPath = 'maxkey-mgt'
|
|
|
|
}
|
|
|
|
}
|
|
} |