Re: Re: How to add a library to the classpath

2023-01-06 Thread Eric Bresie
Would using basic batch/shell specifying the dependencies with the Java classpath argument (without maven run) and the main runtime class be the alternative? Kind of a side question…when building with maven does it automate the addition dependencies within the META-INF/MANIFEST.MF (1)

Re: How to add a library to the classpath

2023-01-06 Thread Delany
Could this help? https://maven.apache.org/plugins/maven-dependency-plugin/build-classpath-mojo.html Delany On Fri, 6 Jan 2023 at 05:30, Siddharth Jain wrote: > thanks. unfortunately this is exactly what i don't want to do. i am looking > for a command line solution. i don't want my users to

Re: How to add a library to the classpath

2023-01-06 Thread Mantas Gridinas
I'm confused. Why would your users write additional entries intk your pom? On Fri, Jan 6, 2023, 10:33 Delany wrote: > Could this help? > > https://maven.apache.org/plugins/maven-dependency-plugin/build-classpath-mojo.html > Delany > > On Fri, 6 Jan 2023 at 05:30, Siddharth Jain wrote: > > >

Re: Re: How to add a library to the classpath

2023-01-06 Thread Siddharth Jain
Hi All, Thanks for your help. To keep the discussion focused, the ask is how to add additional dependencies/jars to the classpath when running a program using mvn exec:java and from what i understand it is not possible. I am using mvn dependency:build-classpath to get the full CP and then

Re: Re: How to add a library to the classpath

2023-01-06 Thread Laird Nelson
On Fri, Jan 6, 2023 at 8:57 AM Laird Nelson wrote: > On Fri, Jan 6, 2023 at 8:55 AM Siddharth Jain wrote: > >> Thanks for your help. To keep the discussion focused, the ask is how to >> add >> additional dependencies/jars to the classpath when running a program using >> mvn exec:java and from

Re: Re: How to add a library to the classpath

2023-01-06 Thread Laird Nelson
On Fri, Jan 6, 2023 at 8:55 AM Siddharth Jain wrote: > Thanks for your help. To keep the discussion focused, the ask is how to add > additional dependencies/jars to the classpath when running a program using > mvn exec:java and from what i understand it is not possible. > Correction: it is

Re: Re: How to add a library to the classpath

2023-01-06 Thread Siddharth Jain
I think as a user of maven the expected behavior (ask) is for the additionalClasspathElements to support a user.property which it doesn't currently. would be a good feature to add to maven exec plugin i believe. thanks again to all for the help. On Fri, Jan 6, 2023 at 9:33 AM Delany wrote: >

Re: Re: How to add a library to the classpath

2023-01-06 Thread Delany
The way to separate multiple classpaths is to have multiple poms. You can make another child module (so that it inherits the base dependencies) and add the extra dependencies and the exec:java to THAT module. Delany On Fri, 6 Jan 2023 at 18:55, Siddharth Jain wrote: > Hi All, > > Thanks for