The Maven team is pleased to announce the release of the Maven Indexer,
version 4.0.0
This project creates portable indexes from maven repositories, which can be
used to search for artifacts.
You should specify the version in your project's dependency configuration:
org.apache.maven.indexer
Hi,
The vote has passed with the following result :
+1 (binding):
Arnaud Héritier
Benjamin Bentmann
Brian Fox
Brett Porter
+1 (non binding):
Tamás Cservenák
I will promote the artifacts to the central repo.
I actually catch both XmlPullParserException and IOEsception already.
I'm not sure if catching too much (= general Exception) is good, but one can
argue that any hardcore problem (disk errors, etc) would hit the build shortly
after anyway.
So I'll better move to Exception.
txs and LieGrue,
st
Mark Struberg wrote:
It throws the checked IOException and XmlPullParserException, but can it also
throw unchecked Exceptions under 'normal' conditions?
AFAIK no.
So I'm not sure if I should add a catch (Exception e) instead of the 2 checked
exceptions, or if all sane cases are already wra
Hi!
I have a quick question on MavenXpp3Reader#read()
It throws the checked IOException and XmlPullParserException, but can it also
throw unchecked Exceptions under 'normal' conditions?
The code I need this for is PomFinder#findMatchingPom and PomFinder#parsePom. I
like to make sure that it do