Skip to content

Commit 40171ec

Browse files
committed
DEVX-640: gradle settings
1 parent 187b414 commit 40171ec

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
plugins {
2+
id("java")
3+
}
4+
5+
group = "com.commercetools.sdk"
6+
version = "19.5.0-SNAPSHOT"
7+
8+
repositories {
9+
mavenCentral()
10+
}
11+
12+
dependencies {
13+
testImplementation(platform("org.junit:junit-bom:5.10.0"))
14+
testImplementation("org.junit.jupiter:junit-jupiter")
15+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
16+
17+
implementation(project(":commercetools:commercetools-sdk-java-api"))
18+
implementation(project(":commercetools:commercetools-sdk-java-importapi"))
19+
}
20+
21+
tasks.test {
22+
useJUnitPlatform()
23+
}

0 commit comments

Comments
 (0)