Re: problem with AAR dependency

2014-12-08 Thread Igor Fedorenko
I am not sure I follow. Can you explain what actually happens and how forcing element for all projects dependencies is expected to help the problem? -- Regards, Igor On 2014-12-07, 19:25, William Ferguson wrote: ## Cross posting to Maven Dev list One solution to this would be to change the PO

RE: problem with AAR dependency

2014-12-08 Thread Robert Patrick
The problem is almost certainly because the code below specifies a packaging type of “aar” without the requisite work to teach Maven about that packaging type (see http://books.sonatype.com/mvnref-book/reference/writing-plugins-sect-plugins-lifecycle.html)?     I see no reason to eliminate th

[GitHub] maven-plugins pull request: [MPMD-193] CPD's sourceEncoding not se...

2014-12-08 Thread adangel
Github user adangel closed the pull request at: https://github.com/apache/maven-plugins/pull/34 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature

Re: Integrate Maven Site reporting with maven plugin that externally create report html page.

2014-12-08 Thread animator
Thank U so much! -- View this message in context: http://maven.40175.n5.nabble.com/Integrate-Maven-Site-reporting-with-maven-plugin-that-externally-create-report-html-page-tp5817068p5818389.html Sent from the Maven Developers mailing list archive at Nabble.com.

Build Failing of Maven

2014-12-08 Thread kapil Ashiwal
Operating System - Centos-6 The M2_HOME and JAVA_HOME is set. Ant is executed from the M2_HOME and the build fails like : - BUILD FAILED /usr/local/apache-maven-3.2.3/*build.xml:231: Syntax error in property: ${* I am a mere beginner and cant get through this error. Please tell me what is this an

Re: Build Failing of Maven

2014-12-08 Thread Anders Hammar
Wrong mailing list. This list is for development of Maven itself. You should use the Maven User list, se [1]. [1] http://maven.apache.org/mail-lists.html /Anders On Sat, Dec 6, 2014 at 1:06 PM, kapil Ashiwal wrote: > Operating System - Centos-6 > The M2_HOME and JAVA_HOME is set. > Ant is exec

Re: Maven assembly plugin : includeBaseDirectory not correctly used

2014-12-08 Thread Kristian Rosenvold
I fixed interpolation in modello for Xpp3reader. http://jira.codehaus.org/browse/MODELLO-290. Build 1.8.3-SNAPSHOT from git if you want to test it. I'll play around with base class generation for a day or two before releasing 1.8.3 (maybe 1.9) K 2014-12-07 12:22 GMT+01:00 Hervé BOUTEMY : >> Do

Re: Build Failing of Maven

2014-12-08 Thread Bernd Eckenfels
Am Sat, 6 Dec 2014 17:36:45 +0530 schrieb kapil Ashiwal : > BUILD FAILED > /usr/local/apache-maven-3.2.3/*build.xml:231: Syntax error in > property: ${* Obvious question, what is the content of line 231? (and surrounding) Gruss Bernd --

Re: Build Failing of Maven

2014-12-08 Thread Bernd Eckenfels
Hello, Oh I can actually answer my question myself :) build:231 contains a with filter. So I guess it is not about a syntax error in the ant script but the filtered resources. So you need to provide more context: can you see before the error which file actually failed? Gruss Bernd PS: what m

Re: Maven assembly plugin : includeBaseDirectory not correctly used

2014-12-08 Thread Jason van Zyl
Wouldn't it be easier to add interpolation with something like: Model model = MavenXpp3Reader.read(new MyFilterInputStream(inputStream)); Instead of adding interpolation into Modello? Swizzle has lots of nice filtering implementations: http://svn.codehaus.org/swizzle/trunk/swizzle-stream/src/ma

Re: Maven assembly plugin : includeBaseDirectory not correctly used

2014-12-08 Thread Kristian Rosenvold
The extension I added to Xpp3Reader is simple and is not coupled to any kind of specific external code and is just a general purpose extension point. Swizzle looks cool. I'm not entirely convinced interpolation at the stream level will be entirely without a round of gotchas, various forms of xml r