-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
118 lines (90 loc) · 4.67 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/**
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java Library project to get you started.
* For more details take a look at the Java Libraries chapter in the Gradle
* user guide available at https://docs.gradle.org/4.7/userguide/java_library_plugin.html
*/
plugins {
// Apply the java-library plugin to add support for Java Library
id 'java-library'
// Apply the application plugin for bundling the results
id 'application'
}
run {
mainClassName = "FRFinder"
}
dependencies {
// This dependency is exported to consumers, that is to say found on their compile classpath.
api 'org.apache.commons:commons-math3:3.6.1'
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
implementation 'com.google.guava:guava:23.0'
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
// https://mvnrepository.com/artifact/commons-cli/commons-cli
implementation group: 'commons-cli', name: 'commons-cli', version: '1.4'
// https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java
implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '3.6.1'
// https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java-util
implementation group: 'com.google.protobuf', name: 'protobuf-java-util', version: '3.6.1'
// https://mvnrepository.com/artifact/org.graphstream/gs-core
implementation group: 'org.graphstream', name: 'gs-core', version: '1.3'
// https://mvnrepository.com/artifact/guru.nidi/graphviz-java
implementation group: 'guru.nidi', name: 'graphviz-java', version: '0.8.0'
// https://mvnrepository.com/artifact/org.biojava/biojava-core
implementation group: 'org.biojava', name: 'biojava-core', version: '5.2.0'
// http://dev.davidsoergel.com/nexus/content/repositories/releases
//implementation group: 'edu.berkeley.compbio', name: 'jlibsvm', version: '0.911'
// https://mvnrepository.com/artifact/nz.ac.waikato.cms.weka/weka-dev
implementation group: 'nz.ac.waikato.cms.weka', name: 'weka-dev', version: '3.9.5'
// https://mvnrepository.com/artifact/org.jgrapht/jgrapht-core
implementation group: 'org.jgrapht', name: 'jgrapht-core', version: '1.3.0'
// https://mvnrepository.com/artifact/org.jgrapht/jgrapht-io
implementation group: 'org.jgrapht', name: 'jgrapht-io', version: '1.3.0'
// https://mvnrepository.com/artifact/org.jgrapht/jgrapht-ext
implementation group: 'org.jgrapht', name: 'jgrapht-ext', version: '1.3.0'
// https://mvnrepository.com/artifact/com.mxgraph/jgraphx
//implementation group: 'com.mxgraph', name: 'jgraphx', version: '3.7.4'
// https://mvnrepository.com/artifact/org.jfree/jfreechart
implementation group: 'org.jfree', name: 'jfreechart', version: '1.5.0'
// https://mvnrepository.com/artifact/org.jfree/jcommon
implementation group: 'org.jfree', name: 'jcommon', version: '1.0.24'
// https://mvnrepository.com/artifact/com.github.samtools/htsjdk
implementation group: 'com.github.samtools', name: 'htsjdk', version: '2.16.1'
// https://mvnrepository.com/artifact/com.github.fommil.netlib/netlib-native_system-linux-x86_64
implementation group: 'com.github.fommil.netlib', name: 'netlib-native_system-linux-x86_64', version: '1.1'
// XGBoost
implementation group: 'ml.dmlc', name: 'xgboost4j-spark_2.12', version: '1.3.1'
implementation group: 'ml.dmlc', name: 'xgboost4j-flink_2.12', version: '1.3.1'
implementation 'org.apache.commons:commons-lang3:3.4'
implementation 'commons-logging:commons-logging:1.2'
implementation 'com.esotericsoftware:kryo:4.0.2'
implementation 'org.scala-lang:scala-reflect:2.12.8'
implementation 'org.scala-lang:scala-library:2.12.8'
testImplementation 'org.scalatest:scalatest_2.12:3.0.8'
testImplementation 'org.scalactic:scalactic_2.12:3.0.8'
compileOnly 'org.apache.spark:spark-mllib_2.12:3.0.0'
compileOnly 'org.scala-lang:scala-compiler:2.12.8'
}
// In this section you declare where to find the dependencies of your project
repositories {
// Use jcenter for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
mavenCentral()
maven {
url 'http://davidsoergel.com/nexus/content/repositories/releases'
allowInsecureProtocol true
}
maven {
url 'http://davidsoergel.com/nexus/content/repositories/thirdparty'
allowInsecureProtocol true
}
maven {
url 'https://dl.bintray.com/flowtick/jgraphx/'
}
}
compileJava {
options.compilerArgs += ["-Xlint:unchecked"]
options.compilerArgs += ["-Xlint:deprecation"]
}