@Softaddicts : I tried [org.clojure/clojure-contrib "1.2.0"] and this one [org.clojure.contrib/generic "1.3.0-alpha4"] too, but it still gives same error.
And i am new to clojure so can you elaborate for individual libs with example syntax?? On May 31, 6:41 pm, Softaddicts <lprefonta...@softaddicts.ca> wrote: > Either this new compatible contrib or the individual libs officially > supported. > I would suggest using the standalone libs when available in lieu of the 13 > monolithic > compatible lib one. > > Luc > > > > > > > > > You are talking about [org.clojure/clojure-contrib "1.2.0"] this. > > right?? > > and in replacement of that i have to include newer [org.clojure/ > > clojure-contrib "1.3-compat"]. right?? > > > On May 31, 5:17 pm, Softaddicts <lprefonta...@softaddicts.ca> wrote: > > > Since clojure 1.3, contrib as been replaced by distinct libraries: > > > >http://dev.clojure.org/display/design/Where+Did+Clojure.Contrib+Go > > > > You should be using them. No idea where the referenced lib you specify in > > > your project > > > comes from. > > > I did not find it using maven central search or in clojars. > > > > Using the new one is your safest bet. > > > > Luc > > > > > Hello all, > > > > > I am using eclipse IDE on windows 7 for developing clojure project > > > > with leiningen plugin. > > > > > I think i have properly installed and configured java, lein and mvn > > > > commands. > > > > ================================================== > > > > D:\Chirag\workspace\process_it>mvn -version > > > > Apache Maven 3.0.3 (r1075438; 2011-02-28 23:01:09+0530) > > > > Maven home: C:\apache-maven-3.0.3 > > > > Java version: 1.7.0_01, vendor: Oracle Corporation > > > > Java home: C:\Program Files\Java\jdk1.7.0_01\jre > > > > Default locale: en_US, platform encoding: Cp1252 > > > > OS name: "windows 7", version: "6.1", arch: "x86", family: "windows" > > > > ================================================== > > > > D:\Chirag\workspace\process_it>lein version > > > > Leiningen 1.7.1 on Java 1.7.0_01 Java HotSpot(TM) Client VM > > > > ================================================== > > > > > But still when i want to download all dependencies(via "lein deps" > > > > command) its giving artifact missing error as given below my > > > > project.clj file is at last. > > > > Can anybody give some detailed solution for this?? > > > > > =========================================================================== > > > > ===================== > > > > D:\Chirag\workspace\process_it>lein run > > > > Downloading: org/clojure/contrib/repl-utils/1.3.0-alpha4/repl- > > > > utils-1.3.0-alpha4.pom from repository clojars > > > > athttp://clojars.org/repo/ > > > > Unable to locate resource in repository > > > > [INFO] Unable to find resource 'org.clojure.contrib:repl-utils:pom: > > > > 1.3.0-alpha4' in repository clojars (http://clojars.org/repo/) > > > > Downloading: org/clojure/contrib/repl-utils/1.3.0-alpha4/repl- > > > > utils-1.3.0-alpha4.pom from repository central > > > > athttp://repo1.mavenorg/maven2 > > > > Unable to locate resource in repository > > > > [INFO] Unable to find resource 'org.clojure.contrib:repl-utils:pom: > > > > 1.3.0-alpha4' in repository central (http://repo1.maven.org/maven2) > > > > Downloading: org/clojure/contrib/repl-utils/1.3.0-alpha4/repl- > > > > utils-1.3.0-alpha4.pom from repository java.net > > > > athttp://download.java.net/maven/2 > > > > Unable to locate resource in repository > > > > [INFO] Unable to find resource 'org.clojure.contrib:repl-utils:pom: > > > > 1.3.0-alpha4' in repository java.net (http://download.java.net/maven/ > > > > 2) > > > > Downloading: org/clojure/contrib/repl-utils/1.3.0-alpha4/repl- > > > > utils-1.3.0-alpha4.jar from repository clojars > > > > athttp://clojars.org/repo/ > > > > Unable to locate resource in repository > > > > [INFO] Unable to find resource 'org.clojure.contrib:repl-utils:jar: > > > > 1.3.0-alpha4' in repository clojars (http://clojars.org/repo/) > > > > Downloading: org/clojure/contrib/repl-utils/1.3.0-alpha4/repl- > > > > utils-1.3.0-alpha4.jar from repository central > > > > athttp://repo1.mavenorg/maven2 > > > > Unable to locate resource in repository > > > > [INFO] Unable to find resource 'org.clojure.contrib:repl-utils:jar: > > > > 1.3.0-alpha4' in repository central (http://repo1.maven.org/maven2) > > > > Downloading: org/clojure/contrib/repl-utils/1.3.0-alpha4/repl- > > > > utils-1.3.0-alpha4.jar from repository java.net > > > > athttp://download.java.net/maven/2 > > > > Unable to locate resource in repository > > > > [INFO] Unable to find resource 'org.clojure.contrib:repl-utils:jar: > > > > 1.3.0-alpha4' in repository java.net (http://download.java.net/maven/ > > > > 2) > > > > An error has occurred while processing the Maven artifact tasks. > > > > Diagnosis: > > > > > Unable to resolve artifact: Missing: > > > > ---------- > > > > 1) org.clojure.contrib:repl-utils:jar:1.3.0-alpha4 > > > > > Try downloading the file manually from the project website. > > > > > Then, install it using the command: > > > > mvn install:install-file -DgroupId=org.clojure.contrib - > > > > DartifactId=repl-utils -Dversion=1.3.0-alpha4 -Dpackaging=jar -Dfile=/ > > > > path/to/file > > > > > Alternatively, if you host your own repository you can deploy the > > > > file there: > > > > mvn deploy:deploy-file -DgroupId=org.clojure.contrib - > > > > DartifactId=repl-utils -Dversion=1.3.0-alpha4 -Dpackaging=jar -Dfile=/ > > > > path/to/file -Durl=[url] -DrepositoryId=[id] > > > > > Path to dependency: > > > > 1) org.apache.maven:super-pom:pom:2.0 > > > > 2) com.draines:postal:jar:1.7.1 > > > > 3) org.clojure.contrib:repl-utils:jar:1.3.0-alpha4 > > > > > ---------- > > > > 1 required artifact is missing. > > > > > for artifact: > > > > org.apache.maven:super-pom:pom:2.0 > > > > > from the specified remote repositories: > > > > central (http://repo1.maven.org/maven2), > > > > clojars (http://clojars.org/repo/) > > > > > Exception in thread "main" Unable to resolve artifact: Missing: > > > > ---------- > > > > 1) org.clojure.contrib:repl-utils:jar:1.3.0-alpha4 > > > > > Try downloading the file manually from the project website. > > > > > Then, install it using the command: > > > > mvn install:install-file -DgroupId=org.clojure.contrib - > > > > DartifactId=repl-utils -Dversion=1.3.0-alpha4 -Dpackaging=jar -Dfile=/ > > > > path/to/file > > > > > Alternatively, if you host your own repository you can deploy the > > > > file there: > > > > mvn deploy:deploy-file -DgroupId=org.clojure.contrib - > > > > DartifactId=repl-utils -Dversion=1.3.0-alpha4 -Dpackaging=jar -Dfile=/ > > > > path/to/file -Durl=[url] -DrepositoryId=[id] > > > > > Path to dependency: > > > > 1) org.apache.maven:super-pom:pom:2.0 > > > > 2) com.draines:postal:jar:1.7.1 > > > > 3) org.clojure.contrib:repl-utils:jar:1.3.0-alpha4 > > > > > ---------- > > > > 1 required artifact is missing. > > > > > for artifact: > > > > org.apache.maven:super-pom:pom:2.0 > > > > > from the specified remote repositories: > > > > central (http://repo1.maven.org/maven2), > > > > clojars (http://clojars.org/repo/) > > > > > (NO_SOURCE_FILE:0) > > > > at clojure.lang.Compiler.eval(Compiler.java:5440) > > > > at clojure.lang.Compiler.eval(Compiler.java:5391) > > > > at clojure.core$eval.invoke(core.clj:2382) > > > > at clojure.main$eval_opt.invoke(main.clj:235) > > > > at clojure.main$initialize.invoke(main.clj:254) > > > > at clojure.main$script_opt.invoke(main.clj:270) > > > > at clojure.main$main.doInvoke(main.clj:354) > > > > at clojure.lang.RestFn.invoke(RestFn.java:457) > > > > at clojure.lang.Var.invoke(Var.java:377) > > > > at clojure.lang.AFn.applyToHelper(AFn.java:172) > > > > at clojure.lang.Var.applyTo(Var.java:482) > > > > at clojure.main.main(main.java:37) > > > > Caused by: Unable to resolve artifact: Missing: > > > > ---------- > > > > 1) org.clojure.contrib:repl-utils:jar:1.3.0-alpha4 > > > > > Try downloading the file manually from the project website. > > > > > Then, install it using the command: > > > > mvn install:install-file -DgroupId=org.clojure.contrib - > > > > DartifactId=repl-utils -Dversion=1.3.0-alpha4 -Dpackaging=jar -Dfile=/ > > > > path/to/file > > > > > Alternatively, if you host your own repository you can deploy the > > > > file there: > > > > mvn deploy:deploy-file -DgroupId=org.clojure.contrib - > > > > DartifactId=repl-utils -Dversion=1.3.0-alpha4 -Dpackaging=jar -Dfile=/ > > > > path/to/file -Durl=[url] -DrepositoryId=[id] > > > > > Path to dependency: > > > > 1) org.apache.maven:super-pom:pom:2.0 > > > > 2) com.draines:postal:jar:1.7.1 > > > > 3) org.clojure.contrib:repl-utils:jar:1.3.0-alpha4 > > > > > ---------- > > > > 1 required artifact is missing. > > > > > for artifact: > > > > org.apache.maven:super-pom:pom:2.0 > > > > > from the specified remote repositories: > > > > central (http://repo1.maven.org/maven2), > > > > clojars (http://clojars.org/repo/) > > > > > at > > > > org.apache.maven.artifact.ant.DependenciesTask.doExecuteResolution(Dependen > > > > ciesTask.java: > > > > 268) > > > > at > > > > org.apache.maven.artifact.ant.DependenciesTask.doExecute(DependenciesTask.j > > > > ava: > > > > 168) > > > > at > > > > org.apache.maven.artifact.ant.AbstractArtifactTask.execute(AbstractArtifact > > > > Task.java: > > > > 751) > > > > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > > > > at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) > > > > at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown > > > > Source) > > > > at java.lang.reflect.Method.invoke(Unknown Source) > > > > at clojure.lang.Reflector.invokeMatchingMethod(Reflector.java: > > > > 90) > > > > at > > > > clojure.lang.Reflector.invokeNoArgInstanceMember(Reflector.java:265) > > > > at leiningen.deps$do_deps.invoke(deps.clj:131) > > > > at leiningen.deps$deps.doInvoke(deps.clj:196) > > > > at clojure.lang.RestFn.invoke(RestFn.java:410) > > > > at leiningen.compile$prep.invoke(compile.clj:150) > > > > at leiningen.compile$eval_in_project.doInvoke(compile.clj:207) > > > > at... > > read more » -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en