-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (31 loc) · 861 Bytes
/
build.gradle
File metadata and controls
36 lines (31 loc) · 861 Bytes
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
plugins {
id 'java-gradle-plugin'
id 'idea'
id 'org.jetbrains.kotlin.jvm' version "2.1.21"
}
repositories {
mavenCentral()
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}
group = 'com.commercetools.sdk.plugins'
version = '1.0'
gradlePlugin {
plugins.register('srcinfo-plugin') {
id = 'srcinfo'
implementationClass = 'com.commercetools.sdk.plugins.SrcInfoPlugin'
}
plugins.register("versioning-plugin") {
id = 'versioning'
implementationClass = 'com.commercetools.sdk.plugins.VersioningPlugin'
}
}
dependencies {
implementation project(path: ':javaparser', configuration: 'shadow')
implementation "com.google.code.gson:gson:2.13.1"
implementation 'com.squareup:javapoet:1.13.0'
implementation 'com.google.guava:guava:33.4.8-jre'
}