123456789101112131415161718192021222324252627282930 |
- 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'
-
- }
-
- }
- }
|