Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] disable tycho packaging

I'm afraid the packaging of your artifact won't be available if you don't put Tycho as a Maven extension.

Jeff


On Thu, Nov 28, 2013 at 11:57 AM, Lorenzo Boccaccia <lorenzo.boccaccia@xxxxxxxxx> wrote:
Hi

I am trying to disable tycho packaging in favor of the assembly plugin

is there a way to remove it from the executions?
I've tried to override the plugin and disable its build extension, also to set execution to none, to no avail

            <plugin>
                <groupId>org.eclipse.tycho</groupId>
                <artifactId>tycho-packaging-plugin</artifactId>
                <version>${tycho-version}</version>
                <extensions>false</extensions>
                <executions>
                    <execution>
                        <phase>none</phase>
                    </execution>
                </executions>
            </plugin>

so far it kind of work because assembly happens later and overwrite the file but I'd like a proper solution

_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user




--
Jeff MAURY


"Legacy code" often differs from its suggested alternative by actually working and scaling.
 - Bjarne Stroustrup

http://www.jeffmaury.com
http://riadiscuss.jeffmaury.com
http://www.twitter.com/jeffmaury

Back to the top