-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
43 lines (33 loc) · 1.14 KB
/
Copy pathbuild.gradle
File metadata and controls
43 lines (33 loc) · 1.14 KB
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
apply from: 'gradle/release.gradle'
group 'com.movile'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'maven'
apply plugin: 'application'
mainClassName = "com.movile.pgle.Coordinator"
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
maven {
url "http://nexus.it.movile.com:8081/nexus/content/repositories/releases/"
}
maven {
url "https://repository.jboss.org/nexus/content/repositories/releases/"
}
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.12'
compile 'ch.qos.logback:logback-classic:1.1.3'
compile 'ch.qos.logback:logback-core:1.1.3'
compile "org.springframework:spring-core:4.0.3.RELEASE"
compile "org.springframework:spring-beans:4.0.3.RELEASE"
compile "org.springframework:spring-context:4.0.3.RELEASE"
compile "com.fasterxml.jackson.core:jackson-databind:2.5.+"
compile "com.movile.movile-resources:movile-res-commons:1.0.40-SNAPSHOT"
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile "org.springframework:spring-test:4.0.3.RELEASE"
}