Skip to content
This repository has been archived by the owner on Apr 23, 2021. It is now read-only.

Commit

Permalink
Simplifying everything by using gradle builds for liredemo and simple…
Browse files Browse the repository at this point in the history
…application.
  • Loading branch information
dermotte committed Nov 24, 2016
1 parent 1fbc468 commit 23ca965
Show file tree
Hide file tree
Showing 79 changed files with 2,610 additions and 2,523 deletions.
29 changes: 29 additions & 0 deletions samples/liredemo/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
apply plugin: 'java'

repositories {
mavenCentral()
}

dependencies {
compile group: 'org.apache.lucene', name: 'lucene-core', version: '6.2.1'
compile group: 'org.apache.lucene', name: 'lucene-analyzers-common', version: '6.2.1'
compile group: 'org.apache.lucene', name: 'lucene-queryparser', version: '6.2.1'
compile group: 'commons-io', name: 'commons-io', version: '2.5'
compile group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1'
// https://mvnrepository.com/artifact/com.sangupta/jopensurf
compile group: 'com.sangupta', name: 'jopensurf', version: '1.0.0'
// https://mvnrepository.com/artifact/com.drewnoakes/metadata-extractor
compile group: 'com.drewnoakes', name: 'metadata-extractor', version: '2.9.1'
// compile group: 'com.drewnoakes', name: 'metadata-extractor', version: '2.3.1'

// https://mvnrepository.com/artifact/org.bytedeco.javacpp-presets/opencv
// compile group: 'org.bytedeco.javacpp-presets', name: 'opencv', version: '2.4.11-0.11'
compile fileTree(dir: 'lib', include: '*.jar')
// runtime fileTree(dir: 'lib', include: '*.jar')
}

task runDemo(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath

main = 'liredemo.LireDemoFrame'
}
Binary file removed samples/liredemo/lib/JOpenSurf.jar
Binary file not shown.
Binary file removed samples/liredemo/lib/commons-io-2.5.jar
Binary file not shown.
Binary file removed samples/liredemo/lib/commons-math3-3.6.1.jar
Binary file not shown.
Binary file added samples/liredemo/lib/lire.jar
Binary file not shown.
Binary file not shown.
Binary file removed samples/liredemo/lib/lucene-core-6.2.0.jar
Binary file not shown.
Binary file removed samples/liredemo/lib/lucene-queryparser-6.2.0.jar
Binary file not shown.
Binary file removed samples/liredemo/lib/metadata-extractor-2.3.1.jar
Binary file not shown.
Loading

0 comments on commit 23ca965

Please sign in to comment.