Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoberto E. Escobar2013-06-27 00:09:27 +0000
committerGerrit Code Review @ Eclipse.org2013-07-01 18:03:08 +0000
commit0651cf8d5d19e8922f357df133978a70bbeaf130 (patch)
tree3803b78c3a58d890c676c392aa3fba22b158db6f /features/org.eclipse.osee.external.feature/pom.xml
parentad4053baace8388b33c7d977b42a95b3157b1253 (diff)
downloadorg.eclipse.osee-0651cf8d5d19e8922f357df133978a70bbeaf130.tar.gz
org.eclipse.osee-0651cf8d5d19e8922f357df133978a70bbeaf130.tar.xz
org.eclipse.osee-0651cf8d5d19e8922f357df133978a70bbeaf130.zip
feature[ats_3LFWB]: Enable source feature generation
Diffstat (limited to 'features/org.eclipse.osee.external.feature/pom.xml')
-rw-r--r--features/org.eclipse.osee.external.feature/pom.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/features/org.eclipse.osee.external.feature/pom.xml b/features/org.eclipse.osee.external.feature/pom.xml
index d2211c0245d..3d677057d41 100644
--- a/features/org.eclipse.osee.external.feature/pom.xml
+++ b/features/org.eclipse.osee.external.feature/pom.xml
@@ -14,4 +14,38 @@
<packaging>eclipse-feature</packaging>
<name>OSEE Client External Feature (Incubation)</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-source-feature-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <id>source-feature</id>
+ <goals>
+ <goal>source-feature</goal>
+ </goals>
+ <configuration>
+ <excludes>
+ <plugin id="org.apache.xerces" />
+ <plugin id="com.sun.jersey" />
+ <plugin id="org.jvnet.mimepull" />
+ <plugin id="javax.xml" />
+ <plugin id="com.sun.jersey.client.apache" />
+ <plugin id="org.apache.xml.resolver" />
+ <plugin id="org.apache.xml.serializer" />
+ <plugin id="org.eclipse.osee.logback.config" />
+ <plugin id="org.aopalliance" />
+ <plugin id="jms.libraries" />
+ <plugin id="net.jini" />
+ <plugin id="org.json" />
+ </excludes>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
</project> \ No newline at end of file

Back to the top