-
Notifications
You must be signed in to change notification settings - Fork 48
/
build.gradle
60 lines (54 loc) · 1.49 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
plugins {
id 'java'
id 'maven-publish'
id 'distribution'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) { options.encoding = "UTF-8" }
ext.libraries = [
bcprov: 'org.bouncycastle:bcprov-jdk15on:1.70',
bcpkix: 'org.bouncycastle:bcpkix-jdk15on:1.70',
junit: 'junit:junit:4.13.2',
netty_codec_http: 'io.netty:netty-codec-http:4.1.72.Final',
netty_transport: 'io.netty:netty-transport:4.1.72.Final',
netty_handler: 'io.netty:netty-handler:4.1.72.Final',
netty_buffer: 'io.netty:netty-buffer:4.1.72.Final',
netty_common: 'io.netty:netty-common:4.1.72.Final',
rhino: 'org.mozilla:rhino:1.7.13',
slf4j_api: 'org.slf4j:slf4j-api:1.7.32',
slf4j_simple: 'org.slf4j:slf4j-simple:1.7.32'
]
publishing {
publications {
mavenJava(MavenPublication) {
pom {
name = 'trireme'
description = 'Trireme -- Embed Node.js programs inside the Java Virtual Machine'
url = 'http://apigee.io/'
licenses {
license {
name = 'MIT License'
url = 'http://opensource.org/licenses/MIT'
}
}
// TODO Developers
scm {
connection = 'scm:git:https://github.com/apigee/trireme.git'
developerConnection = 'scm:git:ssh://[email protected]/apigee/trireme.git'
url = '[email protected]:apigee/trireme.git'
}
}
}
}
}
allprojects {
test {
useJUnit()
failFast = false
maxParallelForks = 16
}
repositories {
mavenCentral()
}
}