-
-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
work around Gradle and eclipse version issues again
- Loading branch information
Showing
42 changed files
with
180 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
|
||
description = 'ELKI - 3D Parallel Coordinate Trees Visualization' | ||
dependencies { | ||
compile project(':elki') | ||
compile group: 'org.jogamp.jogl', name: 'jogl-all-main', version:'2.1.5-01' | ||
compile group: 'org.jogamp.gluegen', name: 'gluegen-rt-main', version:'2.1.5-01' | ||
compile project(':elki-batik-visualization') | ||
api project(':elki') | ||
api project(':elki-batik-visualization') | ||
implementation group: 'org.jogamp.jogl', name: 'jogl-all-main', version:'2.1.5-01' | ||
implementation group: 'org.jogamp.gluegen', name: 'gluegen-rt-main', version:'2.1.5-01' | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
description = 'ELKI - Batik Visualization' | ||
dependencies { | ||
compile group: 'org.apache.xmlgraphics', name: 'batik-swing', version:'1.11+' | ||
compile group: 'org.apache.xmlgraphics', name: 'batik-rasterizer', version:'1.11+' | ||
compile group: 'org.apache.xmlgraphics', name: 'batik-ext', version:'1.11+' | ||
compile group: 'org.apache.xmlgraphics', name: 'batik-codec', version:'1.11+' | ||
compile group: 'org.apache.xmlgraphics', name: 'xmlgraphics-commons', version:'2.3+' | ||
compile group: 'xalan', name: 'xalan', version:'[2.7.2,3)' | ||
compile project(':elki-gui-minigui') // For GUIUtil, otherwise elki would be enough | ||
compile project(':elki-uncertain') | ||
api project(':elki-gui-minigui') // For GUIUtil, otherwise elki would be enough | ||
api project(':elki-uncertain') | ||
implementation group: 'org.apache.xmlgraphics', name: 'batik-swing', version:'1.11+' | ||
implementation group: 'org.apache.xmlgraphics', name: 'batik-rasterizer', version:'1.11+' | ||
implementation group: 'org.apache.xmlgraphics', name: 'batik-ext', version:'1.11+' | ||
implementation group: 'org.apache.xmlgraphics', name: 'batik-codec', version:'1.11+' | ||
implementation group: 'org.apache.xmlgraphics', name: 'xmlgraphics-commons', version:'2.3+' | ||
implementation group: 'xalan', name: 'xalan', version:'[2.7.2,3)' | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
|
||
description = 'ELKI - OpenGL-based Visualization' | ||
dependencies { | ||
compile project(':elki') | ||
compile group: 'org.jogamp.jogl', name: 'jogl-all-main', version:'2.1.5-01' | ||
compile group: 'org.jogamp.gluegen', name: 'gluegen-rt-main', version:'2.1.5-01' | ||
compile project(':elki-batik-visualization') | ||
api project(':elki') | ||
api project(':elki-batik-visualization') | ||
implementation group: 'org.jogamp.jogl', name: 'jogl-all-main', version:'2.1.5-01' | ||
implementation group: 'org.jogamp.gluegen', name: 'gluegen-rt-main', version:'2.1.5-01' | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
description = 'ELKI - LibSVM based extensions' | ||
dependencies { | ||
compile project(':elki-outlier') | ||
compile group: 'tw.edu.ntu.csie', name: 'libsvm', version:'3.17' | ||
testCompile project(path: ':elki-test-core', configuration: 'testOutput') | ||
testCompile project(path: ':elki-outlier', configuration: 'testOutput') | ||
api project(':elki-outlier') | ||
implementation group: 'tw.edu.ntu.csie', name: 'libsvm', version:'3.17' | ||
testImplementation project(path: ':elki-outlier', configuration: 'testOutput') | ||
testImplementation project(path: ':elki-test-core', configuration: 'testOutput') | ||
testRuntimeOnly project(':elki-core-dbids-int') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
|
||
description = 'ELKI - Lucene based extensions' | ||
dependencies { | ||
compile project(':elki') | ||
compile group: 'org.apache.lucene', name: 'lucene-core', version:'3.6.2' | ||
compile group: 'org.apache.lucene', name: 'lucene-queries', version:'3.6.2' | ||
api project(':elki') | ||
implementation group: 'org.apache.lucene', name: 'lucene-core', version:'3.6.2' | ||
implementation group: 'org.apache.lucene', name: 'lucene-queries', version:'3.6.2' | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
description = 'ELKI - Tutorial Algorithms' | ||
dependencies { | ||
compile project(':elki') | ||
testCompile project(path: ':elki-clustering', configuration: 'testOutput') | ||
testCompile project(path: ':elki-outlier', configuration: 'testOutput') | ||
testCompile project(path: ':elki-test-core', configuration: 'testOutput') | ||
api project(':elki') | ||
testImplementation project(path: ':elki-clustering', configuration: 'testOutput') | ||
testImplementation project(path: ':elki-outlier', configuration: 'testOutput') | ||
testImplementation project(path: ':elki-test-core', configuration: 'testOutput') | ||
testRuntimeOnly project(':elki-core-dbids-int') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
description = 'ELKI - Uncertain data handling' | ||
dependencies { | ||
compile project(':elki-clustering') | ||
api project(':elki-clustering') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
description = 'ELKI - X-Tree' | ||
dependencies { | ||
compile project(':elki-index-rtree') | ||
compile project(':elki') | ||
testCompile project(path: ':elki-test-core', configuration: 'testOutput') | ||
api project(':elki') | ||
api project(':elki-index-rtree') | ||
testImplementation project(path: ':elki-test-core', configuration: 'testOutput') | ||
testRuntimeOnly project(':elki-core-dbids-int') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
description = 'ELKI - Classification Algorithms' | ||
dependencies { | ||
compile project(':elki-core') | ||
testCompile project(path: ':elki-test-core', configuration: 'testOutput') | ||
api project(':elki-core') | ||
testImplementation project(path: ':elki-test-core', configuration: 'testOutput') | ||
testRuntimeOnly project(':elki-core-dbids-int') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
description = 'ELKI - Clustering Algorithms' | ||
dependencies { | ||
compile project(':elki-core') | ||
// compile project(':elki-precomputed') // For distance matrixes | ||
// via core: compile project(':elki-index-preprocessed') // For SNN clustering | ||
// compile project(':elki-index-rtree') | ||
testCompile project(path: ':elki-test-core', configuration: 'testOutput') | ||
api project(':elki-core') | ||
testImplementation project(path: ':elki-test-core', configuration: 'testOutput') | ||
testRuntimeOnly project(':elki-core-dbids-int') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
description = 'ELKI - Core Data Types' | ||
dependencies { | ||
compile project(':elki-core-api') | ||
testCompile group: 'junit', name: 'junit', version:'[4.8,)' | ||
api project(':elki-core-api') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
description = 'ELKI - Core DBIDs Integer Implementation' | ||
dependencies { | ||
compile project(':elki-core-dbids') | ||
testCompile group: 'junit', name: 'junit', version:'[4.8,)' | ||
api project(':elki-core-dbids') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
description = 'ELKI - Core DBIDs API' | ||
dependencies { | ||
compile project(':elki-core-util') | ||
testCompile group: 'junit', name: 'junit', version:'[4.8,)' | ||
api project(':elki-core-util') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
description = 'ELKI - Core Distance Functions' | ||
dependencies { | ||
compile project(':elki-core-data') | ||
compile project(':elki-core-math') | ||
testCompile group: 'junit', name: 'junit', version:'[4.8,)' | ||
api project(':elki-core-data') | ||
api project(':elki-core-math') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
description = 'ELKI - Core Mathematics and Statistics' | ||
dependencies { | ||
compile project(':elki-core-api') | ||
testCompile group: 'junit', name: 'junit', version:'[4.8,)' | ||
api project(':elki-core-api') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
description = 'ELKI - Parallel Processing Core' | ||
dependencies { | ||
compile project(':elki-core-math') | ||
api project(':elki-core-math') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
description = 'ELKI - Core Miscellaneous' | ||
dependencies { | ||
// compile project(':elki-database') | ||
compile project(':elki-index-preprocessed') | ||
compile project(':elki-core-parallel') | ||
testRuntime project(':elki-core-dbids-int') | ||
testCompile group: 'junit', name: 'junit', version:'[4.8,)' | ||
api project(':elki-index-preprocessed') | ||
api project(':elki-core-parallel') | ||
testImplementation project(':elki-core-dbids-int') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
description = 'ELKI - Data Generator' | ||
dependencies { | ||
compile project(':elki-clustering') | ||
compile project(':elki-outlier') | ||
testCompile project(path: ':elki-test-core', configuration: 'testOutput') | ||
api project(':elki-clustering') | ||
api project(':elki-outlier') | ||
testImplementation project(path: ':elki-test-core', configuration: 'testOutput') | ||
testRuntimeOnly project(':elki-core-dbids-int') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
description = 'ELKI - Database' | ||
dependencies { | ||
// compile project(':elki-core-distance') // For Euclidean distance optimizations | ||
compile project(':elki-input') | ||
testCompile project(':elki-core-dbids-int') | ||
testCompile group: 'junit', name: 'junit', version:'[4.8,)' | ||
api project(':elki-input') | ||
testImplementation project(':elki-core-dbids-int') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
description = 'ELKI - Documentation Utilities' | ||
dependencies { | ||
compile project(':elki-core-util') | ||
api project(':elki-core-util') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
description = 'ELKI - Geography Module' | ||
dependencies { | ||
// compile project(':elki-core') | ||
compile project(':elki-index') // For projected indexes | ||
testCompile project(path: ':elki-test-core', configuration: 'testOutput') | ||
api project(':elki-core') | ||
api project(':elki-index') // For projected indexes | ||
testImplementation project(path: ':elki-test-core', configuration: 'testOutput') | ||
testRuntimeOnly project(':elki-core-dbids-int') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
description = 'ELKI - MiniGUI Command Line Builder' | ||
dependencies { | ||
compile project(':elki') | ||
api project(':elki') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
description = 'ELKI - Locality Sensitive Hashing' | ||
dependencies { | ||
compile project(':elki-index') | ||
testCompile project(path: ':elki-test-core', configuration: 'testOutput') | ||
api project(':elki-index') | ||
testImplementation project(path: ':elki-test-core', configuration: 'testOutput') | ||
testRuntimeOnly project(':elki-core-dbids-int') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
description = 'ELKI - M-Tree Variants' | ||
dependencies { | ||
compile project(':elki-index') | ||
// Currently in elki-index: compile project(':elki-index-preprocessed') | ||
testCompile project(path: ':elki-test-core', configuration: 'testOutput') | ||
api project(':elki-index') | ||
// Currently in elki-index: api project(':elki-index-preprocessed') | ||
testImplementation project(path: ':elki-test-core', configuration: 'testOutput') | ||
testRuntimeOnly project(':elki-core-dbids-int') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
description = 'ELKI - Indexes based on preprocessing' | ||
dependencies { | ||
compile project(':elki-database') | ||
testCompile project(path: ':elki-test-core', configuration: 'testOutput') | ||
api project(':elki-database') | ||
testImplementation project(path: ':elki-test-core', configuration: 'testOutput') | ||
testRuntimeOnly project(':elki-core-dbids-int') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
description = 'ELKI - R-Tree Variants' | ||
dependencies { | ||
compile project(':elki-index') | ||
// Currently in elki-index: compile project(':elki-index-preprocessed') | ||
testCompile project(path: ':elki-test-core', configuration: 'testOutput') | ||
api project(':elki-index') | ||
// Currently in elki-index: api project(':elki-index-preprocessed') | ||
testImplementation project(path: ':elki-test-core', configuration: 'testOutput') | ||
testRuntimeOnly project(':elki-core-dbids-int') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
description = 'ELKI - Various indexes' | ||
dependencies { | ||
// compile project(':elki-core') | ||
compile project(':elki-index') | ||
testCompile project(path: ':elki-test-core', configuration: 'testOutput') | ||
api project(':elki-index') | ||
testImplementation project(path: ':elki-test-core', configuration: 'testOutput') | ||
testRuntimeOnly project(':elki-core-dbids-int') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
description = 'ELKI - Index Core' | ||
dependencies { | ||
compile project(':elki-index-preprocessed') // Used by m-tree, r-tree approximations, otherwise elki-database would be enough. | ||
compile project(':elki-persistent') | ||
testCompile group: 'junit', name: 'junit', version:'[4.8,)' | ||
api project(':elki-index-preprocessed') // Used by m-tree, r-tree approximations, otherwise elki-database would be enough. | ||
api project(':elki-persistent') | ||
testImplementation group: 'junit', name: 'junit', version:'[4.8,)' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.