-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (28 loc) · 847 Bytes
/
build.gradle
File metadata and controls
34 lines (28 loc) · 847 Bytes
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
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'eclipse'
apply plugin: 'idea'
//sourceSets.main.java.srcDirs = ['src/main/java']
mainClassName = 'hello.HelloWorld'
repositories {
mavenCentral()
maven { url "http://www.datanucleus.org/downloads/maven2/" }
}
jar {
baseName = 'java-examples'
version = '0.1.0'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile 'ch.qos.logback:logback-classic:1.2.3'
compile 'com.google.guava:guava:19.0'
compile 'com.fasterxml.jackson.core:jackson-databind:2.7.4'
compile 'com.oracle.coherence:coherence:3.7.1'
compile 'org.eclipse.jetty:jetty-servlet:8.1.0.v20120127'
compile 'org.quartz-scheduler:quartz:2.2.1'
compile 'org.quartz-scheduler:quartz-jobs:2.2.1'
}
task wrapper(type: Wrapper) {
gradleVersion = '4.7'
}