How to unsubscribe from this list?

2023-11-13 Thread Alex Orlov
Hi all,   I am trying to unsubscribe from this mailing list but I can’t do that. I’ve sent two messages to  ` users-unsubscr...@maven.apache.org ` but I still get messages from users mailing list.   Could anyone say how to unsubscribe?   -- Best regards, Alex Orlov

Re: Strange problem with maven site with snippet macro in multi module wars

2023-08-10 Thread Alex O'Ree
On Thu, Aug 10, 2023 at 8:18 PM Alex O'Ree wrote: > Ok strange problem, using maven site 3.12.0 (also tried 3.6.0) > > Project layout is like this > > /pom.xml <- root project > /src/site/testfile/file1.json <- the snippet i want > /project1 <- pom project only

Strange problem with maven site with snippet macro in multi module wars

2023-08-10 Thread Alex O'Ree
Ok strange problem, using maven site 3.12.0 (also tried 3.6.0) Project layout is like this /pom.xml <- root project /src/site/testfile/file1.json <- the snippet i want /project1 <- pom project only /project1/warmodule/pom.xml <- the project i'm generating a site for

PluginManager.verifyReportPlugin NoSuchMethod

2022-11-24 Thread Alex O'Ree
Hello I was rummaging around in the maven pdf plugin internals which used to have the ability to append maven site reporting plugin content into PDFs. I noticed it was calling the following: return (PluginDescriptor) pluginManager.verifyReportPlugin( reportPlugin, project, session ); which

Re[2]: Getting logging messages in child process immediately

2021-06-23 Thread Alex Orlov
I still have no solution. Can anyone help me?     -- Best regards, Alex Orlov     >Вторник, 22 июня 2021, 11:47 +03:00 от Mantas Gridinas : >  >Try flushing or something equivalent   >On Tue, Jun 22, 2021, 10:44 Alex Orlov < ooo_satu...@mail.ru.invalid > wrote: >  >&

Getting logging messages in child process immediately

2021-06-22 Thread Alex Orlov
event '" + event + "'." );     }     }     …..     }   Could anyone sat if there is any solution/flag to print log messages from child process on console immediately?       -- Best regards, Alex Orlov  

Re[2]: Maven-javadoc-plugin for JPMS modules when module name is different from artifactId

2021-06-06 Thread Alex Orlov
Yes,  'mvn compile javadoc:javadoc' helped. Thank you very much.     -- Best regards, Alex Orlov     >Воскресенье, 6 июня 2021, 1:20 +03:00 от Robert Scholte : >  >In case of modules, javadoc requires a compiles module descriptor, so try 'mvn >compile javadoc:javadoc' > >Robe

Maven-javadoc-plugin for JPMS modules when module name is different from artifactId

2021-06-03 Thread Alex Orlov
Hi all,   I have a sample project with two jpms modules. It is a maven project with one parent and two child modules. A parent pom: ... foo.api foo.impl ... API module pom: ... com.foo foo.api ... API module-info: module com.foo.api { requires org.slf4j; exports com.foo.api; }

having problems installing local dependency via GitHub Actions

2021-01-18 Thread Alex Ford
I have been trying to automate testing for our Maven project on GitHub using Actions, but we have a local dependency and the install:install-file command seems to be generating the path incorrectly. It doesn't do this on my own Windows machine, so I'm at a loss on what it's doing, or why, and how

Excluding source files even if they are referenced

2020-09-14 Thread Alex Gerdov
Hello, I was wondering - is it possible to instruct the compiler plug-in to exclude source files even if they are referenced directly by other source files? Thank you. Alex Gerdov Research & Development (t) +972-54-6489120 (e) alex.ger...@unboundtech.com (w) www.unboundtech

Re[2]: How does surefire 3.0.0-M5 run JPMS with junit5?

2020-07-03 Thread Alex Orlov
: maven → surefire → junit-platform-launcher → junit-platform-engine.   However, I can’t find maven, surefire, launcher, engine in boot layer. How does it work? Could you explain what magic I miss?   Alex >Пятница, 3 июля 2020, 17:40 +03:00 от Tibor Digana : >  >Hi Alex, >  >This is th

How does surefire 3.0.0-M5 run JPMS with junit5?

2020-07-03 Thread Alex Orlov
lain where is platform, engine etc.   -- Alex Orlov

Re: Javadoc aggregate fails with MDEP-187 with dependency plugin

2020-06-03 Thread Alex O'Ree
> I know this will trigger few times the same lifecycle/goals and will add > few times the same jar to the artifacts to deploy but it should work. > > On Mon, 1 Jun 2020 at 22:33, Alex O'Ree wrote: > > > I'm attempting to, with a release profile, build javadoc jars for

Javadoc aggregate fails with MDEP-187 with dependency plugin

2020-06-01 Thread Alex O'Ree
I'm attempting to, with a release profile, build javadoc jars for all modules in my project and generate a single aggregate javadoc jar for the whole project, preferable with just running 'mvn -PmyReleaseProfile install'. Is this possible? In my case i have a few modules that use the dependency

Re: Accessing a nexus repository requiring a client certificate

2020-05-18 Thread Alex O'Ree
PR's opened, feel free to review or whatever. I'm fully expecting that they won't be merged as is https://github.com/apache/maven-wagon/pull/67 https://github.com/apache/maven-resolver/pull/51 On Mon, May 18, 2020 at 6:18 PM Alex O'Ree wrote: > roger that. All the changes i've made thus

Re: Accessing a nexus repository requiring a client certificate

2020-05-18 Thread Alex O'Ree
may have to change some APIs > Wagon is a very old API (back to when Maven2 was born... yup that's long > time ago now :) ) > so definitely it could be changed BUT we have to maintain a backward compat > as much as we can > > On Mon, 18 May 2020 at 11:36, Alex O'Ree wrote:

Re: Accessing a nexus repository requiring a client certificate

2020-05-17 Thread Alex O'Ree
oposal :) > > On Mon, 18 May 2020 at 10:11 am, Alex O'Ree wrote: > > > Well after a few different experiments with what i've describe above, the > > issue i'm having setting ensuring that setting.xml parameters get passed > > into wagon. Currently, it looks like i need

Re: Accessing a nexus repository requiring a client certificate

2020-05-17 Thread Alex O'Ree
s. > > But openConnectionInternal creating client would not reuse http > connection > > (or you have another idea?) > > It was a bit of hackish to have http connection pooling due to current > > design but especially with https it saves some IO. > > > > > &g

Re: Accessing a nexus repository requiring a client certificate

2020-05-17 Thread Alex O'Ree
setup, make a new configuration within this method, otherwise fallback to the default static pool? On Mon, May 11, 2020 at 7:10 PM Alex O'Ree wrote: > I did some work on this over the weekend. Maintaining backwards > compatibility is going to be challenging due to the http connectio

Re: Accessing a nexus repository requiring a client certificate

2020-05-11 Thread Alex O'Ree
up down a rat role of trying to understand why some of the unit tests were failing and making it worse in the process. On Wed, May 6, 2020 at 6:38 AM Michael Osipov wrote: > Am 2020-05-05 um 22:03 schrieb Alex O'Ree: > > I was looking over the docs for the settings.xml file

Accessing a nexus repository requiring a client certificate

2020-05-05 Thread Alex O'Ree
I was looking over the docs for the settings.xml file and noted that it looks like it's possible to access a nexus repository using a client certificate of sorts. It's not clear the docs if a JKS can be used or if it must be a ssh private key or what. http://maven.apache.org/settings.html#servers

mvn site vs an unusual maven-dependency-plugin configuration

2019-08-29 Thread Alex O'Ree
I've been struggling with this problem on and off for a while and have been unable to resolve this. Hopefully someone can provide some guidance. This is a multi-module project. I have a jar project that needs some native libraries in a specific path during the unit tests. To make this happen, I

mvn site doxia snippet macro in markdown?

2018-11-29 Thread Alex O'Ree
I'm looking for an example on how to use the code snippet macro from doxia within a markdown file. I've found this https://maven.apache.org/guides/mini/guide-snippet-macro.html but it only covers apt and xdoc, but nothing for markdown. Is this supported?

Re[2]: maven-failsafe-plugin and JPMS module

2018-09-17 Thread Alex Sviridov
but want to get everything working on >the new releases without denting releases into live. > >not sure about OSGi > >On Sat, 15 Sep 2018 at 12:17, Alex Sviridov < ooo_satu...@mail.ru.invalid > >wrote: >> >> Hi all, >> >> Could anyone of maven-failsafe-

maven-failsafe-plugin and JPMS module

2018-09-15 Thread Alex Sviridov
-exam (for OSGi) creates another temp bundle. 3) Is there an example which shows how to use the plugin for integration testing of JPMS module? I would be helpful for any help. Best regards, Alex Sviridov

How to work java 9 modules with Maven Surefire Plugin?

2018-09-13 Thread Alex Sviridov
be any links to examples. Please, help. -- Best regards, Alex Sviridov

Re: Problem with exec-maven-plugin

2018-05-24 Thread Alex
In the interest of providing full reference in the list, I have come up with a workaround to achieve what I want: I list the dependencies in a profile that is active by default, then use another profile to run generate-sources with no dependencies active, like follows: Added in

Re: Problem with exec-maven-plugin

2018-05-20 Thread Alex
Hi Francois, Someone on SO has explained that this is related to bug https://issues.apache.org/jira/browse/MNG-3283 The maven-exec-plugin has "requiresDependencyResolution = ResolutionScope.TEST" You can see that annotation here:

Problem with exec-maven-plugin

2018-05-18 Thread Alex
Hello all, I have a problem running exec-maven-plugin in a multi-module project _without_ installing snapshots to my local repository. What happens is that Maven seems to require that dependencies are "resolved" during the "generate-sources" phase so if I run "mvn generate-sources" it complains

Re: Maven site filter properties with a period

2017-10-21 Thread Alex O'Ree
I would say it's fine as is, but one possible suggestion would be add a h4 under the "Filtering" section labeled "Common Problems". Under that you can put the parts related to properties with dots and the ## markdown issue On Fri, Oct 20, 2017 at 10:50 PM, Alex O'Ree <spyhu

Re: Maven site filter properties with a period

2017-10-20 Thread Alex O'Ree
> documentation > > Regards, > > Hervé > > Le vendredi 20 octobre 2017, 18:28:33 CEST Alex O'Ree a écrit : > > Thanks, that confirms it. Now i can find out this why is failing, i'm be > set > > > > https://issues.apache.org/jira/projects/MSITE/issues/

Re: Maven site filter properties with a period

2017-10-20 Thread Alex O'Ree
s/maven-site-plugin/ > examples/creating-content.html#Filtering > > Regards, > > Hervé > > Le lundi 16 octobre 2017, 20:22:04 CEST Alex O'Ree a écrit : > > I have some pom defined properties that I'm trying to inject into a maven > > site markdown file. The f

Maven site filter properties with a period

2017-10-16 Thread Alex O'Ree
I have some pom defined properties that I'm trying to inject into a maven site markdown file. The file is named "test.md.vm" and it's referenced in the site descriptor. > This property is used to test PDF .vm > project injection. If you can read this in the PDF output, it's > working. >

Activating a profile if an executable exists on the path?

2017-10-01 Thread Alex O'Ree
I've been using the umlgraph/graphviz/dot as a javadoc extension for a while now and i was wondering how i could support builds on machines whereby graphviz is not installed. I was thinking a profile with some activate rules would do it that would override the javadoc settings. Looking at the

Re: Updating from 3.3.9 to 3.5.0 causing strange unit test failures

2017-10-01 Thread Alex O'Ree
after further investigation, it's probably not a maven issue. On Sun, Oct 1, 2017 at 11:15 AM, Alex O'Ree <alexo...@apache.org> wrote: > I thought i had cleaned that up. One of those, if it's not broke don't fix > it, kind of things. > > > On Sun, Oct 1, 2017 at 10:24 AM

Re: Updating from 3.3.9 to 3.5.0 causing strange unit test failures

2017-10-01 Thread Alex O'Ree
I thought i had cleaned that up. One of those, if it's not broke don't fix it, kind of things. On Sun, Oct 1, 2017 at 10:24 AM, Karl Heinz Marbaise <khmarba...@gmx.de> wrote: > Hi, > > On 01/10/17 15:35, Alex O'Ree wrote: >> >> Apache jUDDI PMC here. >> >

Updating from 3.3.9 to 3.5.0 causing strange unit test failures

2017-10-01 Thread Alex O'Ree
Apache jUDDI PMC here. I just spent the better part of my weekend trying to update and revamp some code in Apache jUDDI and ran into a bit of strange situation that is reporting worthy. All of our previous release builds were ran using maven 3.3.9 on windows with JDK7. I recently switched to

reporting plugin that runs after child module reporting tasks?

2017-09-23 Thread Alex O'Ree
Hi all, writing a reporting plugin that aggregates findbugs results. I'm cheating a bit here and am reading in the generated findbug html file, which is generated after findbugs run with the site plugin. The html appears to be generated in the doxia parts the site goal. Anyhow, with this

Maven PDF Plugin footer

2017-04-13 Thread Alex O'Ree
Is there a way to remove or change the footer printed on all pages except for the title page? It looks like the default is (c) ${year} {$organization} - All rights reserved This appears to open be used for the fo implementation. It's not present on the IText output, but I don't personally care

How does maven choose which plugin version to use?

2016-07-03 Thread Alex Ditu
n of maven-war-plugin. My first question is: where does maven read wich plugin version to use, if I don't specify one? I tought it was in the super-pom, but I didn't find anything there...Can anyone help me understand what is happen

Maven site plugin, turn off copyright notice

2015-10-13 Thread Alex O'Ree
Is there a way to turn off the copyright notice on the bottom of generated maven sites? - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: Maven site plugin, turn off copyright notice

2015-10-13 Thread Alex O'Ree
, Karl Heinz Marbaise <khmarba...@gmx.de> wrote: > Hi, > > On 10/13/15 9:57 PM, Alex O'Ree wrote: >> >> I think I figured it out. It was being injected into the footer. >> Overriding the footer in the site descriptor appears to have >> suppressed it. Too

Re: Maven site plugin, turn off copyright notice

2015-10-13 Thread Alex O'Ree
PM, Karl Heinz Marbaise <khmarba...@gmx.de> wrote: > Hi, > > On 10/13/15 9:45 PM, Alex O'Ree wrote: >> >> Is there a way to turn off the copyright notice on the bottom of >> generated maven sites? > > > Which of them do you mean exactly ? Can you show a

Re: Use 2 pom.xml files with different names

2015-08-10 Thread Alex Ditu
I know how to solve my problem (by changing the project configuration). My question is: why mvn -f otherPomName.xml deploy doesen't work? And I said above how it fails. On Aug 10, 2015 5:59 PM, Barrie Treloar baerr...@gmail.com wrote: On 10 August 2015 at 23:22, Alex Ditu ditu.alexan

RE: [EXTERNAL] Re: Use 2 pom.xml files with different names

2015-08-10 Thread Alex Ditu
: Do you have the same groupId, artifactId, and version specified in both POM files? -Original Message- From: Alex Ditu [mailto:ditu.alexan...@gmail.com] Sent: Monday, August 10, 2015 10:17 AM To: Maven Users List Subject: [EXTERNAL] Re: Use 2 pom.xml files with different names

Re: Use 2 pom.xml files with different names

2015-08-10 Thread Alex Ditu
. Thank you! -Original Message- From: Alex Ditu [mailto:ditu.alexan...@gmail.com javascript:;] Sent: Monday, August 10, 2015 8:17 To: Maven Users List Subject: Re: Use 2 pom.xml files with different names So the answer is: one cannot use a pom file with a different

Re: Use 2 pom.xml files with different names

2015-08-10 Thread Alex Ditu
So the answer is: one cannot use a pom file with a different name than 'pom.xml'. In such case, why the -f option exists? On Aug 10, 2015 6:13 PM, Benson Margulies bimargul...@gmail.com wrote: On Mon, Aug 10, 2015 at 11:04 AM, Alex Ditu ditu.alexan...@gmail.com wrote: I know how to solve my

Use 2 pom.xml files with different names

2015-08-10 Thread Alex Ditu
Hello, I want to use pom.xml files for my project with 2 different names: pom.xml and pom2.xml. In order to select wich one to execute/use I use -f pom-name like this: mvn -f pom2.xml deploy Using this aproach I've encountered some problems in 2 scenarios: 1. If both pom.xml and pom2.xml exist

Re: Use 2 pom.xml files with different names

2015-08-10 Thread Alex Ditu
: On Aug 10, 2015, at 7:12 AM, Alex Ditu ditu.alexan...@gmail.com wrote: Hello, I want to use pom.xml files for my project with 2 different names: pom.xml and pom2.xml. In order to select wich one to execute/use I use -f pom-name like this: (…snip…) P.S. Don't ask me why I want to use 2

Update non-unique snapshots from Artifactory to local repository

2015-07-21 Thread Alex Ditu
Hello, I am new to maven and do not know how to solve this issue: I decided not to keep timestampped artifacts in Aritfactory but now maven is not downloading newer artifacts from Artifactory, although in metadata the versions differ. I do not want to manually delete my local copy of an artifact

Re: [Failsafe] How to properly conduct integration tests on executable jar files

2014-03-19 Thread Alex Karasulu
On Thu, Mar 13, 2014 at 4:54 AM, Alex Karasulu akaras...@apache.org wrote: Hello, I've got a module that builds an executable jar file using the Maven Assembly Plugin. I'm trying to setup an integration test (in the same module) that runs this executable jar file as a separate process

[Failsafe] How to properly conduct integration tests on executable jar files

2014-03-12 Thread Alex Karasulu
or pass in the needed parameters to do so in the integration test? -- Best Regards, -- Alex

Re: Maven Site Plugin and report plugins that need dependencies declared

2014-02-14 Thread Alex Potsides
add the additional dependency at the plugin level, and not the configuration.reportPlugins.plugin level.. So, sorry, but you were wrong twice. :-) On Thu, Feb 13, 2014 at 10:34 AM, Alex Potsides a...@achingbrain.net wrote: plugin artifactIdmaven-site-plugin/artifactId version3.3

Maven Site Plugin and report plugins that need dependencies declared

2014-02-13 Thread Alex Potsides
dependency artifactId../artifactId groupId../groupId ... I get: Cannot find setter, adder nor field in org.apache.maven.reporting.exec.ReportPlugin for 'dependencies' Is this sort of configuration not possible? Thanks in advance. Alex Potsides

Re: Maven Site Plugin and report plugins that need dependencies declared

2014-02-13 Thread Alex Potsides
Brevity appreciated. You sound like someone who has answered that question before. Thanks, Alex On Thu, Feb 13, 2014 at 5:50 PM, Hervé BOUTEMY herve.bout...@free.frwrote: I'll make it short: please don't use reportPlugins in m-site-p configuration see http://maven.apache.org/plugins

'Running a Single Test' feature does not work as expected (for testng provider)

2013-04-07 Thread Alex Chen
) Thanks Best regards Alex Chen

Re: Dependency in the local repository is ignored

2012-03-07 Thread Alex
Yes you were right. Here how I installed and use m2e Install in following order: 1) Subclipse 1.6 including all options 2) m2e release (1.0) 3) from Window-Preferences-Maven-Discovery, Open Catalog: m2e connector for maven-scm-plugin 4) from Window-Preferences-Maven-Discovery, Open Catalog:

Dependency in the local repository is ignored

2012-03-06 Thread Alex
repository. I installed the newest releases of maven, eclipse, m2eclipse. Please, please help Alex

Re: Dependency in the local repository is ignored

2012-03-06 Thread Alex
it tomorrow when I will get access to working computer. Alex

Migrating from Maestro to Apache Maven - Archiva

2011-12-07 Thread Alex.
Hi , We would to migrate from Maetro 1.1 to Apache Maven 3.0 -Archiva. Any one have a good installation - configuration - integration guide? Best regards, Alex.

Determine what depends on artifact?

2011-08-31 Thread Brown, Alex
with 100 artifacts that exist and that might have cross dependencies, I would like to see of those artifacts what depends on what and what is depended on by others. I made a little tool to get this in xml form, but would love to see a more robust solution. Thanks, Alex Barclays

RE: Determine what depends on artifact?

2011-08-31 Thread Brown, Alex
in NetBeans, you can right click on the dependecy and view the details, part of this includes a visual dependency graph On Aug 31, 2011 1:28 PM, Brown, Alex abr...@barclaycardus.com wrote: Hello, I am a Maven 3 user and I am looking for a tool that allows me to easily see the dependencies

RE: Determine what depends on artifact?

2011-08-31 Thread Brown, Alex
Agreed, none do it though to my knowledge (Was looking to see if someone knew of one I did not know about), perhaps there is no such tool. Perhaps I'll make one. Thanks! -Original Message- From: Wayne Fay [mailto:wayne...@gmail.com] Sent: Wednesday, August 31, 2011 11:52 AM To: Maven

Integration testing and WAR dependencies

2011-05-26 Thread Alex Lopez
module to JAR, and the test module picked up all transitive dependencies...) What is the recommended aproach to organize integration testing in a maven multi-module webapp project? Thanks and have a good day, Alex

Re: Integration testing and WAR dependencies

2011-05-26 Thread Alex Lopez
Thanks Wayne, really useful explanations. I already had googled a bit about this but, as always, one cannot expect to find good examples or practices out there and I have a high respect for this list opinions, specially about the maven way which I see now again and again ends up always with

Re: help - how to reduce the build time using mvn and cargo

2011-05-13 Thread Alex Lopez
You could deploy in place or unpacked or something similar, there is more than one way to deploy or test your webapp without it having to be packed into the WAR, which is what takes most of the build time for us too. Em 13-05-2011 01:42, Ron Wheeler escreveu: On 12/05/2011 12:53 PM, javadaisy

Re: Maven 3.0.3 hanging / having timeouts often?

2011-05-12 Thread Alex Lopez
Em 12-05-2011 01:22, Andrew Robinson escreveu: I have been using maven 2.2.1 for a while at my company and we just switched to maven 3. I have rebuilt my computer (ubuntu maverick 10.04 32-bit == ubuntu natty 11.04 64-bit) and installed maven 3. In maven 3.0.3, (I have not seen it with maven

Re: Maven 3.0.3 hanging / having timeouts often?

2011-05-12 Thread Alex Lopez
such circumstances wouldn't end mvn process, instead forcing it to continue? Em 12-05-2011 11:50, Alex Lopez escreveu: Em 12-05-2011 01:22, Andrew Robinson escreveu: I have been using maven 2.2.1 for a while at my company and we just switched to maven 3. I have rebuilt my computer (ubuntu maverick 10.04

Re: Maven 3.0.3 hanging / having timeouts often?

2011-05-12 Thread Alex Lopez
Em 12-05-2011 12:02, Tim Pizey escreveu: On 12 May 2011 11:50, Alex Lopez wrote: Em 12-05-2011 01:22, Andrew Robinson escreveu: I have been using maven 2.2.1 for a while at my company and we just switched to maven 3. I have rebuilt my computer (ubuntu maverick 10.04 32-bit == ubuntu natty

Re: Maven, Subversion and Eclipse issue

2011-05-09 Thread Alex Lopez
never a good idea to commit the target dir IMO... Em 09-05-2011 15:42, Refr Bruhl escreveu: Team I've an issue with the m2 plugin using maven in conjunction with subversion. Since this crosses three platforms I thought I would try both the subversion and maven list to see if anyone has run

Re: multiple project builds

2011-05-04 Thread Alex Lopez
You could check out the books freely available in sonatype website (books section), maven reference and maven by example, these really helped me a lot to understand whan a multi-module/reactor project is and how to arrange a good structure for it (ie separate inheritance from modularity etc)

Re: mvn compile works mvn site-deploy causes complation error

2011-04-27 Thread Alex Lopez
Have you tried with maven-site-plugin 3.0-beta-3 ? Also I don't remember why exaclty, I've got executions execution idattach-descriptor/id goals

Re: same proyects running under java 1.4 and java 1.5

2011-04-13 Thread Alex Lopez
Make the classes into different jars (java 1.4 and 1.6) and add one ore the other as dependencies under different profiles. Em 13-04-2011 15:01, Fernando Wermus escreveu: Hi all, We have a proyect which we need to compile under java 1.4 for some companies and 1.6 for other companies. The

Re: same proyects running under java 1.4 and java 1.5

2011-04-13 Thread Alex Lopez
be plenty of ways ;) Em 13-04-2011 15:44, Fernando Wermus escreveu: Alex, I understand your proposal. Do I need to create two proyects for this situation or could I avoid this? 2011/4/13 Alex Lopezalo...@flordeutopia.pt Make the classes into different jars (java 1.4 and 1.6) and add one

Re: The maven-assembly-plugin and a large complex project.

2011-04-07 Thread Alex Lopez
Here we have a similar setup, we manage to build everything into a WAR including dependent jars using reactor/assembly project: BTW, we use separate poms for parent (inheritance) and reactor (multi-module), which I think makes sense as all sub-modules have the parent as parent but not one

Re: The maven-assembly-plugin and a large complex project.

2011-04-07 Thread Alex Lopez
or less this way. http://www.sonatype.com/books/mvnref-book/reference/public-book.html Em 07-04-2011 10:30, Adam Gibbons escreveu: Alex, that's perfect! Exactly the kind of thing I'm trying to do myself. Would you mind posting your reactor, war, jar and parent poms please? I'd really like to see

Re: The maven-assembly-plugin and a large complex project.

2011-04-07 Thread Alex Lopez
This is an example multi-module project with separate war, reactor and parent poms Em 07-04-2011 11:16, Alex Lopez escreveu: I don't think I can post the full thing, but I'll post some cut down version so you can make an idea. BTW, I got the idea from the documentation on sonatype site, look

Re: The maven-assembly-plugin and a large complex project.

2011-04-07 Thread Alex Lopez
BTW the mvn install or mvn deploy is done in our case on the top directory, the reactor one, and it gets propagated to the others in appropriate order by the reactor module. Em 07-04-2011 11:16, Alex Lopez escreveu: I don't think I can post the full thing, but I'll post some cut down version

Re: Delivery Status Notification (Failure)

2011-04-05 Thread Alex Lopez
Jaina, if maven works in another machine it might be some configuration either in: - Your settings.xml file ~/.m2/settings.xml - Maven's global settings.xml under maven's install dir {$M2_HOME}/conf - Other files under Maven installation dir - M2Eclipse configuration (Preferences-Maven) Alex

maven compile can't resolve the class in rt.jar

2010-07-31 Thread Alex Kuznetsov
We are having problem with maven. maven compile can't resolve the class in rt.jar Error: cannot find symbol symbol : class Action location: package javax.xml.ws We are using : Maven version: 2.0.9 Java version: 1.6.0_03 OS name: sunos version: 5.10 arch: sparc Family: unix Thanks, Alex

[ANN] FEST JavaFX Compiler Maven Plug-in 1.0b2 released!

2010-05-19 Thread Alex Ruiz
Greetings, I'm happy to announce that the FEST JavaFX Compiler Maven Plug-in 1.0b2 is out. This version allows compilation of JavaFX test sources. More details (including an example on how to use it) can be found at http://alexruiz.developerblogs.com/?p=1197 Cheers, -Alex

Re: Manipulating the build's classpath programmatically (in a custom mojo)

2010-05-07 Thread Alex Ruiz
Thanks, but I think that that doesn't answer my question. I just need a programmatic way to add jars to the build classpath. Cheers, -Alex On Fri, May 7, 2010 at 1:21 AM, Jemos Infra jemos.in...@googlemail.comwrote: I think this question was answered recently in the list and involved using

Re: Adding jars to the compiler plugin's classpath

2010-05-06 Thread Alex Ruiz
Hi Michael, It seems that extensions is what I'm looking for. Unfortunately I haven't found any info about how to create (?) one. Do you know where can I find more info? :) Many thanks, -Alex On Wed, May 5, 2010 at 10:53 PM, Michael Hüttermann mich...@huettermann.net wrote: you can use

Manipulating the build's classpath programmatically (in a custom mojo)

2010-05-06 Thread Alex Ruiz
at any time. I'm writing a little maven plugin for this, but I don't know how to add them to the current classpath. Any pointers will be greatly appreciated :) Thanks, -Alex

Adding jars to the compiler plugin's classpath

2010-05-05 Thread Alex Ruiz
, all the *.jar files in directory 'foo'. Many thanks in advance, -Alex

How to explicitly choose JUnit even if TestNG is in the classpath? (Surefire)

2009-08-31 Thread Alex Ruiz
tests. I'm guessing that Surefire is trying to run my tests with TestNG, since it is in the classpath. Is there any way to instruct Surefire to use JUnit instead? (BTW, I tried to find the answer myself before posting this question) :) Many thanks in advance, -Alex

How to make a war file with all schema inside

2009-05-20 Thread Alex
it's possibile make, with eclipse/maven, a .war file (for tomcat) that include all necessary schemas? I want that my service working in local without internet. Unfortunately at the moment without internet tomcat tries to get external schema (es. spring schemas or cxf schemas) and doesn't

Re: resources with different encodings

2008-12-30 Thread Alex Milanovic
(if it exists). I am actually a bit surprised that such a basic thing is not built into Maven. I would expect to be able to specify the encoding per resource. Cheers, Alex On Tue, Dec 30, 2008 at 4:04 AM, Wayne Fay wayne...@gmail.com wrote: Ok, I defined two different executions of the resource

Re: resources with different encodings

2008-12-29 Thread Alex Milanovic
Ok, I defined two different executions of the resource plugin, gave them different IDs but how can I control which one is executed for each individual resource? They should be executed in the same phase and for the same goal. Alex On Thu, Dec 18, 2008 at 3:36 PM, Stephen Connolly

Re: mvn install on a top level of multimodule project

2008-12-24 Thread Alex Athanasopoulos
I've encountered a similar problem when one of the sub-modules is a maven plugin that is used by another sub-module. I discovered this only when I cleaned-up my local repository. Then mvn clean install didn't work. Even mvn clean and mvn validate failed because the plugin was missing. My

Re: Third party jars

2008-12-24 Thread Alex Athanasopoulos
the metadata files, since they are local repo metadata. Of course, I'm now adding new 3rd party jars through Nexus. I've found this related issue, but it doesn't explain the solution: https://issues.sonatype.org/browse/NEXUS-996 -Alex On Sat, Nov 29, 2008 at 8:27 PM, Brian Fox bri...@reply.infinity.nu

Deploying without uploading to Maven Repo

2008-12-21 Thread Alex Morgovsky
Hi. Is there a way to disable uploading to a Maven Repo during mvn deploy?

Re: Are Maven profiles like Ant targets?

2008-12-20 Thread Alex Athanasopoulos
. This is better than using ant alone, because it lets maven construct an appropriate classpath which the ant target can use. So, maven tasks were not designed to be like ant targets, but can be used like them, if you're using ant targets as standalone scripts outside of the build lifecycle. -Alex

resources with different encodings

2008-12-18 Thread Alex Milanovic
Hi All, I have a mix of resources in UTF-8 (XML files) and ISO-8859-1 (properties files). The resource encoding can be configured only on the level of the entire resource plugin, but I need to be able to specify the encoding per resource. Is this possible? Thanks, Alex

Re: [Public service announcement] mirrors of Central and considerate repo use

2008-12-01 Thread Alex Athanasopoulos
Thanks. This sheds some light to my darkness, and may explain why my home-made maven mirror wasn't working properly. Alex On Sat, Nov 29, 2008 at 4:33 PM, Wendy Smoak [EMAIL PROTECTED] wrote: On Sat, Nov 29, 2008 at 5:16 AM, Alex Athanasopoulos [EMAIL PROTECTED] wrote: One of the most

Re: Third party jars

2008-11-29 Thread Alex Athanasopoulos
that is automatically updated with my daily build artifacts. In fact, I may simply provide http access to the daily build's local repository. For now, I rebuild all of my artifacts locally. Alex On Fri, Nov 28, 2008 at 10:38 PM, [EMAIL PROTECTED] wrote: Hi, Is there any way to get the maven build process

Re: [Public service announcement] mirrors of Central and considerate repo use

2008-11-29 Thread Alex Athanasopoulos
(something easily done with svn, which I use as my repository manager). -Alex On Tue, Nov 25, 2008 at 5:27 PM, Brian E. Fox [EMAIL PROTECTED]wrote: The central repo has been undergoing significant load lately, most likely the result of people crawling and attempting to download all 70GB

Re: Excluding certain file types using the maven-war-plugin

2008-10-14 Thread Alex Coles
On Mon, Oct 13, 2008 at 11:39 PM, Alex Coles [EMAIL PROTECTED] wrote: Thanks for your suggestion. I can create a JIRA ticket (or even attempt to create a patch for the NPE -- the code looks reasonably straightforward). However, there still is the discrepancy with the documentation. Which

Re: Excluding certain file types using the maven-war-plugin

2008-10-13 Thread Alex Coles
, trace down (and fix) the issue, and contribute it back via JIRA. Or open an issue in JIRA, attach a sample project which demonstrates the bug, and wait for someone else to fix it for you. Wayne On Sun, Oct 12, 2008 at 9:18 PM, Alex Coles [EMAIL PROTECTED] wrote: On Mon, Oct 13, 2008 at 6:05

Excluding certain file types using the maven-war-plugin

2008-10-12 Thread Alex Coles
is omitted. This appears to contradict the fourth example in the documentation (under Includes/Excludes here: http://maven.apache.org/plugins/maven-war-plugin/examples/adding-filtering-webresources.html) which shows the directory element may be omitted. Thanks for any advice you can give. Alex Coles

  1   2   3   4   >