3

where can i download the dependency Apache commons beanutils i couldn't find it in many popular repos i am using, please advise.

Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498

2 Answers2

2

Maven Central now has a search website.

http://search.maven.org

Version 1.8.3 of Beanutils is found here.

The Maven GAV coordinate to use is:

<dependency>
    <groupId>commons-beanutils</groupId>
    <artifactId>commons-beanutils</artifactId>
    <version>1.8.3</version>
</dependency>
Mark O'Connor
  • 76,015
  • 10
  • 139
  • 185
  • i know the dependency, but what repo should i add to download it from, like: javanet Repository for Maven2 http://download.java.net/maven/2 – Mahmoud Saleh Sep 12 '11 at 08:22
  • Download from Maven central (The search URL is above). See the answer to the following question. Describes how to enable Maven central in your ivy build: http://stackoverflow.com/questions/7313316/using-a-custom-repository-with-apache-ivy-no-resolver-found/7362756#7362756 – Mark O'Connor Sep 12 '11 at 17:06
  • Oops sorry.... You're a Maven user. Don't worry Maven Central is preconfigured in the Maven client. You don't have to enable anything (Unless you sit behind a network proxy, or your company uses an Enterprise Maven repository) – Mark O'Connor Sep 12 '11 at 17:08
1

What GAV are you trying?

Plenty of beanutils in repo1.maven.org.

Paul Grime
  • 14,970
  • 4
  • 36
  • 58
  • Group, Artifact, Version - http://www.sonatype.com/books/nexus-book/reference/ch02s02.html#d4e467. You shouldn't have to add `repo.maven.org` to your settings or you pom as it's there by default. If Maven can't *see* it then maybe you're behind a proxy. – Paul Grime Sep 12 '11 at 08:30
  • any ideas how to download it from repo then, or add the dependency manually from eclipse ? – Mahmoud Saleh Sep 12 '11 at 08:35
  • i was able to download it finally after adding the following repo: Maven Central Repository for Maven2 http://repo1.maven.org/maven2/ – Mahmoud Saleh Sep 12 '11 at 08:48