2
0

build.gradle 824 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. description = "maxkey-web-manage"
  2. // Apply the java plugin to add support for Java
  3. apply plugin: 'java'
  4. //apply plugin: 'war'
  5. apply plugin: 'eclipse-wtp'
  6. apply plugin: 'com.bmuschko.tomcat-base'
  7. apply plugin: 'com.bmuschko.tomcat'
  8. buildscript {
  9. repositories {
  10. jcenter()
  11. }
  12. dependencies {
  13. classpath "com.bmuschko:gradle-tomcat-plugin:2.2.3"
  14. }
  15. }
  16. dependencies {
  17. compile project(":maxkey-core")
  18. compile project(":maxkey-jose-jwt")
  19. compile project(":maxkey-dao")
  20. compile project(":maxkey-client-sdk")
  21. compile project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
  22. compile project(":maxkey-protocols:maxkey-protocol-saml-2.0")
  23. }
  24. eclipse {
  25. wtp {
  26. component {
  27. //define context path, default to project folder name
  28. contextPath = 'maxkey-mgt'
  29. }
  30. }
  31. }