There was an error while loading. Please reload this page.
1 parent 1546199 commit 38e8214Copy full SHA for 38e8214
tests/objectbox-java-test/build.gradle
@@ -5,6 +5,16 @@ uploadArchives.enabled = false
5
targetCompatibility = '1.7'
6
sourceCompatibility = '1.7'
7
8
+// we have tests in the main source set
9
+// to make Gradle pick them up, add the dir to the test source set
10
+sourceSets {
11
+ test {
12
+ java {
13
+ srcDirs += ['src/main/java']
14
+ }
15
16
+}
17
+
18
dependencies {
19
compile project(':objectbox-java')
20
compile 'org.greenrobot:essentials:3.0.0-RC1'
tests/objectbox-java-test/src/test/java/io/objectbox/annotation/FunctionalTestSuite.java
0 commit comments