Archive for the ‘jsp’ tag
Maven & Sun Jars
Various Sun jars are not published on standard maven repositories due to different licensing models. And What I ave been doing to download the jar and import the required jars to private hosted repository.
I mean until today. There seems to a java.net repository that I was missing for time…
What you should do include
<repositories>
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
<layout>default</layout>
</repository>
</repositories>
in you settings.xml
So one more annoyance has been reolved for me…
The original information is provided on maven’s official website
Popularity: 1%