We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfbd90a commit 6c7ffb9Copy full SHA for 6c7ffb9
build.gradle
@@ -17,6 +17,16 @@ buildscript {
17
}
18
19
20
+sourceSets {
21
+ main { java { srcDir 'src/java' } }
22
+ test {
23
+ java {
24
+ srcDir 'src/examples'
25
+ srcDir 'src/test'
26
+ }
27
28
+}
29
+
30
if(System.getenv('TRAVIS')){
31
apply plugin: 'io.codearte.nexus-staging'
32
apply from: './scripts/deploy.gradle'
@@ -46,4 +56,4 @@ task sourcesJar(type: Jar) {
46
56
from sourceSets.main.allSource
47
57
48
58
49
-artifacts { archives javadocJar, sourcesJar }
59
+artifacts { archives javadocJar, sourcesJar }
0 commit comments