Skip to content

Commit 3b8e505

Browse files
committed
Port test-platform/build.gradle to build.gradle.kts
1 parent 9fe13c4 commit 3b8e505

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

test-platform/build.gradle

Lines changed: 0 additions & 16 deletions
This file was deleted.

test-platform/build.gradle.kts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
plugins {
2+
`java-platform`
3+
}
4+
5+
description = "Dependency constraints for tests"
6+
7+
dependencies {
8+
constraints {
9+
api("junit:junit:[4.12,5)")
10+
api("org.apache.httpcomponents:httpclient:[4.5.2,5)")
11+
api("org.mockito:mockito-core:[2.27.0,3)")
12+
api("org.scalacheck:scalacheck_2.13:[1.14.0,2)")
13+
api("org.scalatest:scalatest_2.13:[3.0.8,3.1)")
14+
api("uk.org.lidalia:slf4j-test:[1.1.0,2)")
15+
}
16+
}

0 commit comments

Comments
 (0)