Mahmoud Saleh
Mahmoud Saleh

Reputation: 33605

Maven repo for apache commons beanutils

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

Upvotes: 3

Views: 4742

Answers (2)

Mark O'Connor
Mark O'Connor

Reputation: 77961

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>

Upvotes: 2

Paul Grime
Paul Grime

Reputation: 15104

What GAV are you trying?

Plenty of beanutils in repo1.maven.org.

Upvotes: 1

Related Questions