1
我嘗試在lein
項目中導入兩個org.apache.lucene
罐子並獲得ClassNotFoundException
。在clojure中導入lucene罐子
這是我project.clj
文件:
(defproject clj_processing_tweets "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.apache.lucene/lucene-core "4.10.3"]
[org.apache.lucene/lucene-analyzers-common "4.10.3"]]
:profiles {:dev {:dependencies [[speclj "3.1.0"]]}}
:plugins [[speclj "3.1.0"]]
:test-paths ["spec"])
運行lein deps
後,我送core.clj
到雷音REPL和我
CompilerException java.lang.ClassNotFoundException: org.apache.lucene.analysis.*, compiling:(clj_processing_tweets/core.
clj:1:36)
這裏是我的core.clj
文件:
(ns clj_processing_tweets.core
(:import [org.apache.lucene.analysis *]))
感謝幫助。