-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
61 lines (49 loc) · 1.96 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
buildscript {
ext {
javaVersion = '21'
morpherVersion = '1.8.0'
pmdVersion = '6.55.0'
spotbugsVersion = '4.8.1'
spotbugsGradlePluginVersion = '5.2.3'
junitVersion = '4.13.2'
}
dependencies {
classpath "com.github.spotbugs.snom:spotbugs-gradle-plugin:${spotbugsGradlePluginVersion}"
}
}
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.5'
id 'io.spring.dependency-management' version '1.1.3'
}
description = 'Spring Boot based Morpher web API implementation'
group = 'com.github.szgabsz91'
version = morpherApiVersion
apply from: "$rootDir/gradle/java.gradle"
apply from: "$rootDir/gradle/static-code-analysis.gradle"
apply from: "$rootDir/gradle/maven.gradle"
apply from: "$rootDir/gradle/ide.gradle"
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation("com.github.szgabsz91:morpher-system-api:${morpherVersion}")
implementation("com.github.szgabsz91:morpher-system-impl:${morpherVersion}")
implementation("com.github.szgabsz91:morpher-engine-api:${morpherVersion}")
implementation("com.github.szgabsz91:morpher-engine-impl:${morpherVersion}")
implementation("com.github.szgabsz91:morpher-language-handler-api:${morpherVersion}")
implementation("com.github.szgabsz91:morpher-language-handler-hunmorph:${morpherVersion}")
implementation("com.github.szgabsz91:morpher-transformation-engine-api:${morpherVersion}")
implementation("com.github.szgabsz91:morpher-transformation-engine-astra:${morpherVersion}")
implementation 'org.springframework.boot:spring-boot-starter-webflux'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.projectreactor:reactor-test'
testImplementation("junit:junit:${junitVersion}")
}