-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
188 lines (142 loc) · 7.03 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
buildscript {
repositories {
jcenter()
maven { url 'https://maven.rapidminer.com/content/groups/public/' }
}
dependencies {
classpath 'com.rapidminer.gradle:java-basics:0.4.3'
classpath 'com.rapidminer.gradle:java-publishing:0.2.2'
}
}
apply plugin: 'com.rapidminer.java-basics'
apply plugin: 'com.rapidminer.java-publishing.agpl-v3'
repositories {
jcenter()
maven { url 'https://maven.rapidminer.com/content/groups/public/' }
}
dependencies {
compile project(':rapidminer-studio-settings')
compile project(':rapidminer-studio-interfaces')
compile project(':rapidminer-studio-filesystem')
compile project(':rapidminer-studio-license')
compile project(':rapidminer-studio-logging')
compile project(':rapidminer-studio-i18n')
compile project(':rapidminer-studio-security')
compile project(':rapidminer-studio-tools')
compile project(':rapidminer-studio-encryption')
compile project(':rapidminer-studio-globalsearch')
compile project(':rapidminer-studio-math')
// belt project for new data core
compile 'com.rapidminer:belt:1.0.1'
// belt adapter for conversion between old and new core
compile ('com.rapidminer:belt-adapter:1.0.1'){
exclude group: 'com.rapidminer.studio', module: 'rapidminer-studio-core'
exclude group: 'com.rapidminer', module: 'belt'
}
// OS X adapter to add platform specific UI
compile 'com.rapidminer.studio:rapidminer-studio-osx-adapter:1.0.3'
// RapidMiner API
compile 'com.rapidminer:rapidminer-api:0.2.2'
// RapidMiner HDF5 Writer library
compile 'com.rapidminer:rapidminer-hdf5-writer:0.5.2'
// Alphanumeric sorting
compile 'com.rapidminer.external:alphanumeric-sorting:1.0.1'
// VLDocking as docking framework (https://code.google.com/p/vldocking/)
compile 'com.rapidminer.external:vldocking:9.0.2'
// repository supporting versioning
compile('com.rapidminer.repository:versioned-repository:1.0.1') {
exclude group: 'org.bouncycastle', module: 'bcprov-jdk15on'
exclude group: 'commons-io', module: 'commons-io'
exclude group: 'org.apache.commons', module: 'commons-lang3'
}
// Freehep for vector graphic export (http://java.freehep.org/)
compile('org.freehep:freehep-graphicsio-ps:2.3') {
exclude group:'junit', module: 'junit'
exclude group: 'org.freehep',module: 'freehep-graphicsio-tests'
}
compile('org.freehep:freehep-graphicsio-svg:2.3') {
exclude group:'junit', module: 'junit'
exclude group: 'org.freehep', module: 'freehep-graphicsio-tests'
}
// iText for PDF export (http://www.lowagie.com/iText/)
compile('com.lowagie:itext:2.1.7'){
exclude group: 'bouncycastle', module: 'bcmail-jdk14'
exclude group: 'bouncycastle', module: 'bcprov-jdk14'
exclude group: 'bouncycastle', module: 'bctsp-jdk14'
}
// RSyntaxTextArea adds text fields with syntax highlighting (http://fifesoft.com/rsyntaxtextarea/)
compile 'com.fifesoft:rsyntaxtextarea:2.5.0'
compile 'com.fifesoft:autocomplete:2.5.0'
// JXL for the ability to read, write, and modify old format Microsoft Excel spreadsheets (http://www.jexcelapi.org)
compile('net.sourceforge.jexcelapi:jxl:2.6.12') { exclude group: 'log4j', module: 'log4j' }
// Apache POI for manipulating various file formats based upon Office Open XML standards (http://poi.apache.org/)
compile 'org.apache.poi:poi-ooxml:3.17'
compile 'org.apache.poi:poi-scratchpad:3.17'
// GSON is needed by H2O, and up until now only came as a 4th-level transitive dependency via the versioned repository
compile 'com.google.code.gson:gson:2.8.6'
// JGoodies Looks for TODO (http://www.jgoodies.com/freeware/libraries/looks/)
compile 'com.jgoodies:looks:2.2.2'
// JUNG for displaying graphs and trees (http://jung.sourceforge.net/)
compile 'net.sf.jung:jung-visualization:2.0.1'
compile 'net.sf.jung:jung-graph-impl:2.0.1'
// JFreeChart for chart rendering (http://www.jfree.org/jfreechart/)
compile 'org.jfree:jfreechart:1.0.17'
// Java Mail Implementation for mail sending (https://javaee.github.io/javamail/)
compile 'com.sun.mail:javax.mail:1.6.2'
// Groovy for 'Execute Script' operator (http://groovy.codehaus.org/)
compile 'org.codehaus.groovy:groovy-all:2.4.10'
// SwingX for various Swing components (https://swingx.java.net/)
compile 'org.swinglabs.swingx:swingx-all:1.6.5-1'
// XStreams for generic XML serialization (http://xstream.codehaus.org/)
compile 'com.thoughtworks.xstream:xstream:1.4.10'
// JAMA for matrix calculations (http://math.nist.gov/javanumerics/jama/)
compile 'gov.nist.math:jama:1.0.3'
// commons-email for sending emails (https://commons.apache.org/proper/commons-email/)
compile 'org.apache.commons:commons-email:1.5'
// bouncycastle for encryption algorithms (https://www.bouncycastle.org/)
compile 'org.bouncycastle:bcprov-jdk15on:1.50'
// jasypt for simplified encryption (http://www.jasypt.org/)
compile 'org.jasypt:jasypt:1.9.1:lite'
// antlr for parsing expressions (http://www.antlr.org/)
compile 'org.antlr:antlr4-runtime:4.5.1'
// SLF4J API (http://www.slf4j.org)
compile 'org.slf4j:slf4j-api:1.7.13'
// add testing suite to compile because it is required to compare IOObjects
compile 'junit:junit:4.13.1'
// JGraphx for automatic operator arrangement (https://github.com/jgraph/jgraphx)
compile 'com.rapidminer.external:jgraphx:3.9.4'
// JMathPlot for 2D and 3D plots like Box plot, Stick plot, etc. (https://code.google.com/p/jmathplot/)
compile 'com.rapidminer.external:jmathplot:1.0.0'
// Microba adds a Swing date picker (http://microba.sf.net/)
compile 'com.github.tdbear:microba:0.4.4.3'
// Apache Tika for file MIME type detection (https://tika.apache.org/)
compile 'org.apache.tika:tika-core:1.18'
// The xalan version used by the JRE for XML handling contains a bug which results in XSLT not working with an enabled SecurityManager
// Using this version manually to override the JRE fixes the problem. Otherwise all our operator documentation would not work at all
compile 'xalan:xalan:2.7.2'
compile 'xalan:serializer:2.7.2'
// H2 Database used for CTA
compile 'com.h2database:h2:1.4.194'
// up until 7.4.1 this was a transitive dependency coming from license-commons (jackson version 2.4.0)
compile 'com.fasterxml.jackson.core:jackson-core:2.10.5'
compile 'com.fasterxml.jackson.core:jackson-databind:2.10.5.1'
compile 'org.jsoup:jsoup:1.8.3'
// access to windows registry
compile 'net.java.dev.jna:jna-platform:5.5.0'
// matrix library (https://www.ojalgo.org/)
compile 'org.ojalgo:ojalgo:47.3.0'
//java hdf5 reader library (https://github.com/jamesmudd/jhdf)
compile ('io.jhdf:jhdf:0.5.7'){
exclude group: 'org.slf4j', module: 'slf4j-api'
exclude group: 'org.apache.commons', module: 'commons-lang3'
}
// OpenJDK 8 does not come with JavaFX, so we need the core libs from it separately
compile 'com.dukescript.api:javafx.base:8.60.11'
// Proxy handling (https://github.com/JetBrains/intellij-deps-proxy-vole)
compile 'org.jetbrains.intellij.deps:proxy-vole:1.0.5-jb.2'
}
apply from: 'gradle/props.gradle'
apply from: 'gradle/tutorial.gradle'
apply from: 'gradle/template.gradle'
// Jacoco for code coverage information
apply from: 'jacoco.gradle'