-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
60 lines (42 loc) · 1.19 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
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'application'
group 'graph_theory.innopolis'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
mainClassName = "parser.Main"
repositories {
jcenter()
mavenLocal()
}
dependencies {
// tesing
testCompile group: 'junit', name: 'junit', version: '4.11'
// logging
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.6.1'
// common
compile group: 'com.google.guava', name: 'guava', version: '21.0'
// config
compile group: 'com.typesafe', name: 'config', version: '1.3.1' // hocon config
// git
compile group: 'org.eclipse.jgit', name: 'org.eclipse.jgit', version: '2.2.0.201212191850-r'
// eclipse collections
compile 'org.eclipse.collections:eclipse-collections-api:8.1.0'
compile 'org.eclipse.collections:eclipse-collections:8.1.0'
// graphs
compile group: 'org.jgrapht', name: 'jgrapht-core', version: '1.0.1'
}
idea {
module {
downloadSources = true
}
}
buildscript {
repositories {
mavenLocal()
}
dependencies {
// classpath 'muratov:args:1.0.0'
classpath group: 'muratov', name: 'gargs', version: '1.0.0'
}
}