forked from zeromq/zmtp-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (36 loc) · 810 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
apply plugin: 'java'
apply plugin: 'eclipse'
group = 'com.zeromq'
version = '0.1.0-SNAPSHOT'
sourceCompatibility = 1.6
targetCompatibility = 1.6
repositories {
mavenCentral()
}
def projectPom = {
name = fullName
description = fullDescription
url = siteUrl
scm {
url = "scm:$sourceUrl"
connection = "scm:$sourceUrl"
}
licenses {
license {
name = 'Mozilla Public License Version 2.0'
url = 'http://www.mozilla.org/MPL/2.0/'
distribution = 'repo'
}
}
developers {
developer {
id = 'team'
name = 'Trevor Bernard'
email = '[email protected]'
}
}
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.5'
testCompile 'junit:junit:4.11'
}