Skip to content

Commit 2c4ef73

Browse files
committed
Renamed 'core' to 'main'
1 parent e951ecf commit 2c4ef73

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

build.gradle

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,22 @@ manifest {
99
'Implementation-Version': version
1010
}
1111

12+
dependencies {
13+
testCompile group: 'junit', name: 'junit', version: '4.+'
14+
}
15+
1216
sourceSets {
13-
core {
17+
main {
1418
java {
1519
srcDirs 'hamcrest-api/src/main/java', 'hamcrest-core/src/main/java', 'hamcrest-library/src/main/java'
1620
}
1721

1822
}
23+
test {
24+
java {
25+
srcDirs 'hamcrest-api/src/test/java', 'hamcrest-core/src/test/java', 'hamcrest-library/src/test/java'
26+
}
27+
}
1928
}
2029

2130

0 commit comments

Comments
 (0)