-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
49 lines (40 loc) · 1003 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
group 'com.novarto'
version '0.9.2-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
mavenLocal()
}
buildscript {
repositories {
mavenCentral()
jcenter()
maven {
url 'https://oss.jfrog.org/artifactory/libs-snapshot/'
}
}
dependencies {
classpath group: 'com.novarto', name: 'java-conventions',
version: '0.9.1-SNAPSHOT'
}
}
subprojects {
group project.rootProject.group
version project.rootProject.version
apply plugin: 'com.novarto.javaconventions'
apply plugin: 'com.novarto.osspublish'
javaconventions {
ci = System.getProperty("ci")!=null
}
dependencies {
testCompile 'org.hamcrest:hamcrest-all:1.3'
testCompile 'junit:junit:4.12'
testCompile "org.functionaljava:functionaljava-quickcheck:4.7"
}
bintray {
pkg {
name = 'lang'
vcsUrl = 'https://github.com/novarto-oss/lang.git'
}
}
}