Esteve
Esteve

Reputation: 1829

Maven dependency with old version

I need to compile a project with this dependency:

<dependency>
    <groupId>com.wadpam</groupId>
    <artifactId>docrest-doclet</artifactId>
    <version>1.21</version>
    <scope>provided</scope>
</dependency>

(and a lot more like this)

In public maven repositories there's no version 1.21 the oldest one is 1.22. Where can I find that jar?

Upvotes: 2

Views: 1589

Answers (2)

dawidklos
dawidklos

Reputation: 922

I think the best way to do it is creating jar-with-dependencies. It was described also here

Upvotes: 2

mavroprovato
mavroprovato

Reputation: 8362

You can try and built it from source from this github repo:

https://github.com/sosandstrom/docrest

From the command line you can do the following:

git clone https://github.com/sosandstrom/docrest.git
cd docrest
git checkout docrest-1.21

Upvotes: 1

Related Questions