Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] ignore third party libs during generating feature source?

I am not sure what you mean. Do you want tycho to silently ignore
missing source bundles?

--
Regards,
Igor

On 12-07-16 8:57 AM, e92-330cd@xxxxxxxxx wrote:
Right now I am able to generate source features , but some of them include third parties plugins..

eg my feature.xml file:

    <plugin
          id="org.eclipse.equinox.http.jetty"
          download-size="0"
          install-size="0"
          version="0.0.0"
          unpack="false"/>


    <plugin
          id="org.apache.jasper"
          download-size="0"
          install-size="0"
          version="0.0.0"
          unpack="false"/>

    <plugin
          id="org.eclipse.equinox.jsp.jasper"
          download-size="0"
          install-size="0"
          version="0.0.0"
          unpack="false"/>

    <plugin
          id="org.mortbay.jetty"
          download-size="0"
          install-size="0"
          version="0.0.0"
          unpack="false"/>

.....
.....
...


is there any option how to avoid putting these plugins into exclusions?:

<configuration>
		<excludes>
						<plugin id="javax.servlet"/>
						<plugin id="org.eclipse.equinox.http.servlet"/>
						<plugin id="org.eclipse.equinox.http.jetty"/>
						<plugin id="org.eclipse.osgi.services"/>
						<plugin id="org.apache.jasper"/>
	</excludes>
</configuration>
_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user




Back to the top