aboutsummaryrefslogtreecommitdiffstats
path: root/openapi/build.gradle
blob: 0b3e556256aef6403e2fd5d50c3201da6f1b97d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
plugins {
  id 'java'
  id 'io.spring.dependency-management'
}

dependencies {
  implementation project('server')
  implementation project('client-portal-history')
  implementation project('client-portal-keycloak')
  implementation project('client-portal-prefs')
}
ext {
  openapiVersion = '7.0.0-beta'
}
subprojects {
  repositories {
    mavenCentral()
  }
}