Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [m2e-dev] Changing pom.xml properties in Eclipse

I'm good with that :) 

Here's a BZ https://bugs.eclipse.org/bugs/show_bug.cgi?id=490083 (with gerrit and test PR)

Thanks!

-Rastislav

----- Original Message -----
> From: "Fred Bricon" <fbricon@xxxxxxxxx>
> To: "Maven Integration for Eclipse developers mailing list" <m2e-dev@xxxxxxxxxxx>
> Sent: Friday, March 18, 2016 7:30:41 PM
> Subject: Re: [m2e-dev] Changing pom.xml properties in Eclipse
> 
> Rastislav,
> 
> that's an interesting feature, but I don't know how appealing for users that
> can be, given, as Anton explained, you can already use the m2e profile to do
> something similar, in a portable way.
> 
> I think the m2e core modifications are simple enough to go in, so please open
> a BZ+Gerrit changeset+Tests PR on Github.
> 
> I'd keep the UI part outside of m2e-core, at least for now. If you add that
> feature to JBoss Tools, we can monitor its usage there and see if it's
> something really used outside of Red Hat :-)
> 
> I'll consider adding the new API for Neon M6, but we need to be quick: needs
> to go in Tuesday, at the latest.
> 
> Fred
> 
> 
> On Thu, Mar 10, 2016 at 9:45 AM, Rastislav Wagner < rawagner@xxxxxxxxxx >
> wrote:
> 
> 
> Hi Anton,
> yes, you are right however I might not want to specify that property value to
> pom.xml because that wouldn't work for other people who would like to run my
> test project in Eclipse (ie other team members).
> 
> ---
> Rastislav
> 
> ----- Original Message -----
> > From: "Anton Tanasenko" < atg.sleepless@xxxxxxxxx >
> > To: "Maven Integration for Eclipse developers mailing list" <
> > m2e-dev@xxxxxxxxxxx >
> > Sent: Thursday, March 10, 2016 3:31:23 PM
> > Subject: Re: [m2e-dev] Changing pom.xml properties in Eclipse
> > 
> > Hi Rastislav,
> > 
> > You should be able to achieve a similar behaviour with m2e profile in your
> > pom.xml. It will only be active in m2e.
> > 
> > <profiles>
> > <profile>
> > <id>m2e</id>
> > <activation>
> > <property>
> > <name>m2e.version</name>
> > </property>
> > </activation>
> > <properties>
> > <yourProperty>your value</yourProperty>
> > </properties>
> > </profile>
> > </profiles>
> > 
> > 2016-03-10 16:03 GMT+02:00 Rastislav Wagner < rawagner@xxxxxxxxxx > :
> > 
> > 
> > Hello everybody,
> > 
> > I've created a plugin which allows you to change properties in your pom.xml
> > within Eclipse IDE. Please take a look at this video which shows how it
> > works[1].
> > 
> > 
> > My use-case is following:
> > I have a file on which I apply maven resource filtering. After filtering
> > this
> > file should contain a path to a runtime which I'm later using when running
> > tests.
> > When I do this using maven build, maven downloads this runtime and thanks
> > to
> > resource filtering path is set accordingly.
> > However when Im using Eclipse IDE to build and run my tests I would like to
> > do a different filtering - pointing to a runtime which I've downloaded
> > previously to some other folder.
> > Using my plugin I can set a different value of property defined in my
> > pom.xml
> > and keep using resource filtering without changing a single file in my
> > project.
> > 
> > If you think that other m2e users could benefit from this feature I can
> > create a gerrit pull request.
> > 
> > To try this plugin[2] yourself you will also need this branch of m2e[3].
> > 
> > Let me know what you think.Thanks.
> > 
> > [1] https://youtu.be/Njk-otnw9a0
> > [2] https://github.com/rawagner/m2e-properties
> > [3] https://github.com/rawagner/m2e-core/tree/m2e-properties
> > 
> > 
> > ---
> > Rastislav Wagner
> > JBDS QA
> > 
> > Red Hat Czech
> > Purkynova 111, 612 00 Brno, Czech Republic
> > _______________________________________________
> > m2e-dev mailing list
> > m2e-dev@xxxxxxxxxxx
> > To change your delivery options, retrieve your password, or unsubscribe
> > from
> > this list, visit
> > https://dev.eclipse.org/mailman/listinfo/m2e-dev
> > 
> > 
> > 
> > --
> > Regards,
> > Anton.
> > 
> > _______________________________________________
> > m2e-dev mailing list
> > m2e-dev@xxxxxxxxxxx
> > To change your delivery options, retrieve your password, or unsubscribe
> > from
> > this list, visit
> > https://dev.eclipse.org/mailman/listinfo/m2e-dev
> _______________________________________________
> m2e-dev mailing list
> m2e-dev@xxxxxxxxxxx
> To change your delivery options, retrieve your password, or unsubscribe from
> this list, visit
> https://dev.eclipse.org/mailman/listinfo/m2e-dev
> 
> 
> 
> --
> "Have you tried turning it off and on again" - The IT Crowd
> And if that fails, then http://goo.gl/tnBgH5
> 
> _______________________________________________
> m2e-dev mailing list
> m2e-dev@xxxxxxxxxxx
> To change your delivery options, retrieve your password, or unsubscribe from
> this list, visit
> https://dev.eclipse.org/mailman/listinfo/m2e-dev


Back to the top