We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e951ecf commit 2c4ef73Copy full SHA for 2c4ef73
1 file changed
build.gradle
@@ -9,13 +9,22 @@ manifest {
9
'Implementation-Version': version
10
}
11
12
+dependencies {
13
+ testCompile group: 'junit', name: 'junit', version: '4.+'
14
+}
15
+
16
sourceSets {
- core {
17
+ main {
18
java {
19
srcDirs 'hamcrest-api/src/main/java', 'hamcrest-core/src/main/java', 'hamcrest-library/src/main/java'
20
21
22
23
+ test {
24
+ java {
25
+ srcDirs 'hamcrest-api/src/test/java', 'hamcrest-core/src/test/java', 'hamcrest-library/src/test/java'
26
+ }
27
28
29
30
0 commit comments