12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- description = "maxkey-web-maxkey"
- apply plugin: 'java'
- buildscript {
- repositories {
- jcenter()
- }
- dependencies {
-
- }
- }
- dependencies {
- compile project(":maxkey-core")
- compile project(":maxkey-persistence")
-
- compile project(":maxkey-authentications")
-
- compile project(":maxkey-protocols:maxkey-protocol-authorize")
- compile project(":maxkey-protocols:maxkey-protocol-cas")
- compile project(":maxkey-protocols:maxkey-protocol-desktop")
- compile project(":maxkey-protocols:maxkey-protocol-extendapi")
- compile project(":maxkey-protocols:maxkey-protocol-formbased")
- compile project(":maxkey-protocols:maxkey-protocol-tokenbased")
- compile project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
- compile project(":maxkey-protocols:maxkey-protocol-saml-2.0")
-
- compile project(":maxkey-identitys:maxkey-identity-kafka")
-
- }
|