-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathbuild.gradle
38 lines (31 loc) · 1.31 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
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'application'
apply plugin: 'eclipse'
mainClassName = "net.yacy.grid.mcp.MCP"
applicationDefaultJvmArgs = ["-Xmx1024m"]
group = 'net.yacy'
version = '0.0.1-SNAPSHOT'
description = "YaCy Grid MCP"
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.+'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.+'
compile group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.+'
compile group: 'org.eclipse.jetty', name: 'jetty-server', version: '9.4.+'
compile group: 'org.eclipse.jetty', name: 'jetty-servlet', version: '9.4.+'
compile group: 'javax.servlet', name: 'javax.servlet-api', version: '3.+'
compile group: 'org.mapdb', name: 'mapdb', version: '3.+'
compile group: 'com.rabbitmq', name: 'amqp-client', version: '5.+'
compile group: 'commons-net', name: 'commons-net', version: '3.+'
compile group: 'jcifs', name: 'jcifs', version: '1.+'
compile group: 'org.elasticsearch.client', name: 'transport', version: '6.7.1'
compile group: 'org.eclipse.jgit', name: 'org.eclipse.jgit', version: '4.10.0.201712302008-r'
}