Marshall Schor wrote:
Re: Why do you think these two libraries are listed as "runtime"
libraries ?
In my understanding this would mean that they have a scope of runtime,
which they have not.
I was confused also by this, but here's how Maven interprets scopes in
this regard:
compile (the default): item added to compile-time and runtime classpaths
provided: item added to compile-time
runtime: item added to runtime classpaths
The Maven dependency plugin goal "copy-dependencies" includes things
visible in the runtime classpaths.
In our case these two libs have no scope specified so they have the
default compile scope, right ?
Jörn