Skip to main content

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

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>


Back to the top