Re: Problems using maven-dependencies-plugin

2010-11-26 Thread Marvin Froeder
Well, this is problematic right now... there is no place on pom to declare this information, so since on 2.x maven didn't validate the scope that was the place for it =D Hopefully on maven 3.1/project model 5 will make some room so flexmojos would stop using scopes and this problems would be

Re: Build Flex in a Headless Environment

2010-09-23 Thread Marvin Froeder
It would be really nice if you share your tips with other users by add this info on flexmojos wiki https://docs.sonatype.org/display/FLEXMOJOS/Running+unit+tests#Runningunittests-linux It is public editable. VELO On Wed, Aug 18, 2010 at 11:28 PM, Eric Fetzer elstonk...@yahoo.com wrote: Ok, I

Re: Mavenizing a flex project

2010-05-29 Thread Marvin Froeder
Well, we don't have a specific set of instructions to mavenize a pre-existing project. But the getting started will most likely help your. http://flexmojos.sonatype.org/getting-started.html VELO On Sat, May 29, 2010 at 5:11 AM, Viv Kapadekar vi...@peoplepowerco.comwrote: Has anyone

Re: Problem compiling FlexLibrary using include directive

2009-10-07 Thread Marvin Froeder
What maven plugin are you using? VELO On Tue, Oct 6, 2009 at 3:03 AM, boyetp boy...@yahoo.com wrote: Hi All, I hope someone can help me with my issue using Maven to compile Flex Library Project. I got this following files. the class App.as package com.test { public class

Re: No primary artifact to install ?

2009-09-21 Thread Marvin Froeder
to fail the build with a nice exception, saying you cannot find a single mxml or as file and the user needs to specify it using sourceFile/. It would have saved me some hours of research. regards, Wim PS: Thanks for the great plugin! 2009/9/19 Marvin Froeder velo...@gmail.com Now I got

Re: No primary artifact to install ?

2009-09-19 Thread Marvin Froeder
Now I got curious What is up with flexmojos? VELO On Wed, Sep 16, 2009 at 6:31 AM, Wim Deblauwe wim.debla...@gmail.comwrote: It seems the problem was not related to assembly, but to flex mojos. Thank you for your help. regards, Wim 2009/9/16 Aleksey Didik

Re: How to integrate (Flex)asdocs with javadocs?

2009-08-31 Thread Marvin Froeder
Hi Dave, You may found help about flexmojos easier here: http://groups.google.com/group/flex-mojos http://groups.google.com/group/flex-mojosYou can use asdoc-report for that http://sites.sonatype.org/flexmojos/flexmojos-maven-plugin/asdoc-report-mojo.html

[ANN] Flexmojos 3.2 Released

2009-05-08 Thread Marvin Froeder
Hi people, I released last night the latest version of flexmojos, version 3.2.0. Release notes: https://issues.sonatype.org/browse/FLEXMOJOS/fixforversion/10296 This release was mainly focused on improving the unit test support. The greatest new is for Linux headless machines (CI servers).

Re: Maven inconsistent build with flexbuilder

2009-05-07 Thread Marvin Froeder
Gordon, This is a flex compiler issue, I already notice that too so time ago. If you compile the same MXML several times you will get different results at some point they will repeat... initially I thought was some bug on flexmojos (flex plugin for maven), but then I start to try mxmlc and

Re: Maven inconsistent build with flexbuilder

2009-05-07 Thread Marvin Froeder
You could decompile it to try I did bought Sothink SWF Decompiler is quite helpful. VELO On Thu, May 7, 2009 at 1:06 PM, Gordon Cody gc...@zafinlabs.com wrote: Hi Jeff Its actually much uglier than that in my opinion. In builds done a few seconds apart there are not just a few

Re: [ANN] Flexmojos 3.1 Released

2009-04-03 Thread Marvin Froeder
Hi Geoffrey, I still getting adapted to using jira, confluence and this kind of stuff I didn't have before Sonatype Forge. Basically we have 2 changes. 1 - Removed inherit on archetypes from flexmojos-parent-pom. 2 - New unit test launcher. This new launcher was developed to be able to

Maven-plugin-plugin reports...

2009-02-13 Thread Marvin Froeder
Hi Folks, I'm playing a bit with maven-plugin-plugin report (org.apache.maven.plugin.plugin.PluginReport). I was able to adapt it to produce goals overview page into confluence format. Now, I wanna do the same with the page containing the goal configuration. But, I was not able to figure out

Re: Maven SCM (CVS) usage

2008-10-08 Thread Marvin Froeder
the native cvs client, you use the command line, so if you already log in to a cvs server, all works fine like a direct cvs client command. Emmanuel On Wed, Oct 8, 2008 at 2:11 AM, Marvin Froeder [EMAIL PROTECTED] wrote: Yes, and if I add -Dmaven.scm.provider.cvs.implementation=cvs_native

Maven SCM (CVS) usage

2008-10-07 Thread Marvin Froeder
Hi folks, I'm using maven SCM to develop a maven plugin. And I got this exception: org.apache.maven.scm.ScmException: password is required. You must run a 'cvs -d :pserver:[EMAIL PROTECTED]:2401/cvsroot/eclipse login' first or provide it in the connection url. at

Re: Maven SCM (CVS) usage

2008-10-07 Thread Marvin Froeder
Marvin Froeder [EMAIL PROTECTED]: Hi folks, I'm using maven SCM to develop a maven plugin. And I got this exception: org.apache.maven.scm.ScmException: password is required. You must run a 'cvs -d :pserver:[EMAIL PROTECTED]:2401/cvsroot/eclipse login' first or provide

Input parent version on command line

2008-09-17 Thread Marvin Froeder
Hi folks, I'm trying to do something like this: ?xml version=1.0 encoding=UTF-8? project modelVersion4.0.0/modelVersion parent groupIdmygroup/groupId artifactIdmyparentartifact/artifactId version${version}/version /parent artifactIdmyartifact/artifactId /project and launch maven like

Re: Simpler way....

2008-06-29 Thread Marvin Froeder
-instance; xsi:schemaLocation=http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd; ... /project It will give you auto-completion and will simplify the task of knowing which tag is allowed or not. Cheers -Message d'origine- De : Marvin

Simpler way....

2008-06-27 Thread Marvin Froeder
Hi, I have my custom plugin. And I wanna to run it on a project. So I add it at build-plugins plugin artifactIdmaven-source-plugin/artifactId executions execution goals

Sort dependencies

2008-06-26 Thread Marvin Froeder
Hi, Is there any way to sort maven dependencies in other to get first the less dependent to most? Like this - means depend Dep A Dep B Dep C - Dep B and Dep A and Dep D Dep D - Dep E Dep E - Dep A sorted I wanna this: Dep A Dep B Dep E Dep D Dep C Something like that. Anyone knows??

Maven Dependency Mechanism

2008-06-04 Thread Marvin Froeder
Hi guys, I have develop my on plugin for compiling flex with maven ( http://blog.flex-mojos.info/). Flex is different from Java in several ways. One of this ways are related to libraries scopes. Was need to add other scopes in order to compile flex. Now I need to customize maven dependency

Re: Overlaying EAR

2008-01-03 Thread Marvin Froeder
config files plus a bunch of Jars -- there's not much to overlay, as in the WAR plugin. You could probably make something work with dependency:unpack, but I'm not aware of any built-in EAR overlay functionality at this time. Wayne On 1/3/08, Marvin Froeder [EMAIL PROTECTED] wrote: Hi

Re: Overlaying EAR

2008-01-03 Thread Marvin Froeder
and submit your modifications via JIRA. Or you can submit a bug in JIRA and wait for someone else to write the code to support this use case, but this is the least desirable option if you want this done in any particular schedule of your choosing. Wayne On 1/3/08, Marvin Froeder [EMAIL PROTECTED

Re: Unpack

2007-07-04 Thread Marvin Froeder
with the hints. File a jira and attach an swc for me to try out. Thanks, Brian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marvin Froeder Sent: Tuesday, July 03, 2007 10:05 AM To: Maven Users List Subject: Unpack Hi guys... How can I use the dependency

Unpack

2007-07-03 Thread Marvin Froeder
Hi guys... How can I use the dependency plugin: http://maven.apache.org/plugins/maven-dependency-plugin/unpack-mojo.html To unpack an artifact file (is a ZIP file) with a the extension SWC? I got this error: [INFO] Unknown archiver type Embedded error: No such archiver: 'swc'. SWCs are

Re: Unpack

2007-07-03 Thread Marvin Froeder
to have its map updated, but we might be able to mess around with the hints. File a jira and attach an swc for me to try out. Thanks, Brian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marvin Froeder Sent: Tuesday, July 03, 2007 10:05 AM To: Maven Users

Re: [m2] How to get artifact and Maven project for dependencies and transitive dependencies

2007-06-26 Thread Marvin Froeder
Hi guys... If I have an artifact, how do I get the artifact dependencies? VELO Hi, As part of my effort to write a customized dependency report (in XML), I looked at the maven-project-reports-info-plugin to understand how the dependency resolution works. I made a slight modification, as it

Re: multi-modules: a web-app and an Applet

2007-06-26 Thread Marvin Froeder
But that will work with dependencies on the repository only?! I believe no Maybe is a good idea to create as a dependency kind VELO On 6/26/07, #Cyrille37# [EMAIL PROTECTED] wrote: Nick Stolwijk a écrit : Looking at the list of available plugins [1] I guess you'd need the