Modifying classifiers of transitive dependencies

2024-01-31 Thread Mansour Al Akeel
We have a large number of legacy dependencies that we need to sign. I am trying to cache those that are not signed into an internal repository to reduce build time. So I created another project to sign them and load them into our private repository. I am using a classifier to indicate the signed

Third party dependencies

2023-10-06 Thread Mansour Al Akeel
I have a legacy project that requires many third party dependencies. Those dependencies need to be signed. The resulting dependencies along with the swing project, are to be served through a JNLP file. The fact that we need to resign all these dependencies with every build, adds a lot of overhead

Custom plugin dependencies

2014-07-27 Thread Mansour Al Akeel
I am writing a custom plug in. This plugin has other dependencies. How can I make these dependencies available when running the plugin without having to add them manually ?? - To unsubscribe, e-mail:

Re: Custom plugin dependencies

2014-07-27 Thread Mansour Al Akeel
wondering, how to make this library available to the plugin ? On Sun, Jul 27, 2014 at 5:10 AM, Thomas Sundberg t...@kth.se wrote: On 27 July 2014 10:05, Mansour Al Akeel mansour.alak...@gmail.com wrote: I am writing a custom plug in. This plugin has other dependencies. How can I make

Re: Custom plugin dependencies

2014-07-27 Thread Mansour Al Akeel
Issue resolve. My bad. I had to explicitly include ant dependency. On Sun, Jul 27, 2014 at 6:02 AM, Mansour Al Akeel mansour.alak...@gmail.com wrote: Thomas, Thank you for the fast response. Unfortunately this is not the case. I have generate a maven plugin project from the archetype, and add

Re: Custom plugin dependencies

2014-07-27 Thread Mansour Al Akeel
In fact 1.1 is only on my machine. I installed it from source. Anyway, I went back to 1.0 and the same results. However, it's working now, as I just had to add ant. On Sun, Jul 27, 2014 at 8:33 AM, Thomas Sundberg t...@kth.se wrote: On 27 July 2014 12:02, Mansour Al Akeel mansour.alak

antrun classpath with taskdef

2014-07-24 Thread Mansour Al Akeel
: maven.dependency.org.apache.portals.bridges.portals-bridges-common.jar.path - /home/mansour/.m2/repository/org/apache/portals/bridges/portals-bridges-common/2.0/portals-bridges-common-2.0.jar Setting project property: maven.dependency.org.apache.portals.applications.apa-logging.jar.path - /home/mansour/.m2

Re: antrun classpath with taskdef

2014-07-24 Thread Mansour Al Akeel
Let me make sure I understand what you suggest. You are suggesting to add all available JDBC drivers to the plugin dependencies list. This should solve the problem. It might be a work around, but wondering if there's a solution that allows me to access maven pom dependencies from taskdef, for the

Re: war:war not including src/main/java

2009-03-08 Thread Mansour
to include sources. Mansour wrote: I am facing this problem where maven is not including the sources in src/main/java. With jetty:run on the develpoment everthing is fine. But, when I create the war, the directory is not included. ?xml version=1.0? project xmlns=http://maven.apache.org/POM/4.0.0

war:war not including src/main/java

2009-03-07 Thread Mansour
I am facing this problem where maven is not including the sources in src/main/java. With jetty:run on the develpoment everthing is fine. But, when I create the war, the directory is not included. ?xml version=1.0? project xmlns=http://maven.apache.org/POM/4.0.0;

Re: Prevent a build

2009-02-11 Thread Mansour
thank you Paul. But how do I deploy it then? If I deploy, it will recompile and rebuild the whole thing then deploy it to remote repo. Right ? ? Paul Benedict wrote: Mansour, If you include the maven-source-plugin in your build, you can run the command source:jar to create a source-only jar

Prevent a build

2009-02-10 Thread Mansour
Hello all, I am having two problems. The first one is I don't want to compile the classes when creating the artifact (jar). I want the source only to be there. Later on, if I need to build a whole program and wrap it in assembly, Then I would like to include only the sources. How can I do this ?

how to extend maven plugin

2008-12-18 Thread Mansour
Hello all, I need to extend (use) an existing maven plugin from my plugin. How do I proceed, or where do I start ? is there any links ? To be more specific, I need to extend the docbkx maven plugin to generate docbook output. In my own, I need to customize the style sheet, header,etc and

Re: how to extend maven plugin

2008-12-18 Thread Mansour
Jörg Schaible wrote: Mansour wrote at Donnerstag, 18. Dezember 2008 10:32: Hello all, I need to extend (use) an existing maven plugin from my plugin. How do I proceed, or where do I start ? is there any links ? To be more specific, I need to extend the docbkx maven plugin to generate

Re: how to extend maven plugin

2008-12-18 Thread Mansour
Thank you Stephen, hum, Let's make sure I got the idea. Every plugin consist of mojo classes. So in this case, I start my plugin and set the modified docbokx plugin as a depency (jar depency), then I extend the mojos I want to modify and over ride them by setting the default values I need. In

Re: how to extend maven plugin

2008-12-18 Thread Mansour
Stephen Connolly wrote: 2008/12/18 Luke Patterson lukewpatter...@gmail.com For most situations, you could consider the plugin artifact to be prez-layer. You are using the mojo injection mechanism and maven api to gather input for the utility-artifact/wrapped-tool to process. Is that

Re: hibernate-entitymanager

2008-10-30 Thread Mansour
' repository. Did you check if the artifact in question is available via the jboss repo? Justin - Original Message - From: Mansour [EMAIL PROTECTED] To: Maven Users List users@maven.apache.org Sent: Wed Oct 29 09:26:46 2008 Subject: hibernate-entitymanager I am trying to add hibernate

hibernate-entitymanager

2008-10-29 Thread Mansour
I am trying to add hibernate-entitymanager dependency using maven. I am getting an error about missing artifact. I have seen posts about resolving this by manaully installing the dependency. There should be a better way to get this done. If I install the artifact manualy then other developers

Re: convert a maven project and xslt:transform

2008-05-22 Thread Mansour
version2.7.0/version scopecompile/scope /dependency And that should be enough. Regards, Javier Mansour wrote: Hello: I have been using maven for few month. I use it through eclipse plugin and only for getting the dependencies for the projects. Now I think I need a little more

convert a maven project and xslt:transform

2008-05-21 Thread Mansour
Hello: I have been using maven for few month. I use it through eclipse plugin and only for getting the dependencies for the projects. Now I think I need a little more of maven. I have a project that has an xslt transformation. This project is NOT a maven project. I checked the source out of