Re: Using Apache Maven, what is the simplest way to include /lib/ directory in the classpath in the pom.xml

2020-10-16 Thread /dev /local/ca
to use a > wildcard/directory search) > > Gruss > Bernd > > > -- > http://bernd.eckenfels.net > > Von: /dev /local/ca > Gesendet: Friday, October 16, 2020 10:24:50 AM > An: users@maven.apache.org > Betreff: Using Apache Ma

Re: How to build multiple .jars from a single /src/ tree?

2020-10-16 Thread /dev /local/ca
should do is create a multi-module project where you have one > module for each jar artifact you want to create. > > There are numerous examples of multi-module projects on e.g. Github. > > /Anders > > On Fri, Oct 16, 2020 at 10:13 AM /dev /local/ca > wrote: > > > Using

Using Apache Maven, what is the simplest way to include /lib/ directory in the classpath in the pom.xml

2020-10-16 Thread /dev /local/ca
What is the simplest way to specify a directory (and all jars underneath this directory) to be in the maven classpath when it compiles .java classes and builds a .jar? The directory is not in my git repo or any directory under my IDE project files. I have a requirement to create a pom.xml that

How to build multiple .jars from a single /src/ tree?

2020-10-16 Thread /dev /local/ca
Using Apache Maven, I want to know the simplest way to build mutliple jar files based on the package path from a single src/ directory hierarchy I have src/com/pkg-path-one/.../ and src/com/pkg-path-two/.../ I am required to build one jar from src/pkg-path-one, and another jar from