build.gradle 628 B

123456789101112131415161718192021222324252627282930
  1. description = "maxkey-web-manage"
  2. //apply plugin: 'war'
  3. apply plugin: 'eclipse-wtp'
  4. dependencies {
  5. //local jars
  6. compile fileTree(dir: '../maxkey-lib/', include: '*/*.jar')
  7. compile project(":maxkey-core")
  8. compile project(":maxkey-jose-jwt")
  9. compile project(":maxkey-dao")
  10. compile project(":maxkey-client-sdk")
  11. compile project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
  12. compile project(":maxkey-protocols:maxkey-protocol-saml-2.0")
  13. }
  14. eclipse {
  15. wtp {
  16. component {
  17. //define context path, default to project folder name
  18. contextPath = 'maxkey-mgt'
  19. }
  20. }
  21. }