Reputation: 1829
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
Reputation: 922
I think the best way to do it is creating jar-with-dependencies. It was described also here
Upvotes: 2
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