Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2021-02-02 17:16:01 +0000
committerAlexander Kurtakov2021-02-02 17:16:01 +0000
commit360c8585640ff99021ecbc2ce5d4b2ed08f11bdf (patch)
treeb1da2c8415a58a85421bbe5f4fd65a758e71f0b1
parent604dcc342d181a55b03c9cf8deffb2b1b5bbe78b (diff)
downloadeclipse.jdt.ui-360c8585640ff99021ecbc2ce5d4b2ed08f11bdf.tar.gz
eclipse.jdt.ui-360c8585640ff99021ecbc2ce5d4b2ed08f11bdf.tar.xz
eclipse.jdt.ui-360c8585640ff99021ecbc2ce5d4b2ed08f11bdf.zip
Bug 570855 - Include org.eclipse.jdt.ui.unittest.junit.feature in p2I20210202-1840
site Generate source feature for unittest junit feature. Change-Id: Ide5f893f187b8bda49d81d1165a75eed1db17eb9 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--org.eclipse.jdt.ui.unittest.junit.feature/pom.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/org.eclipse.jdt.ui.unittest.junit.feature/pom.xml b/org.eclipse.jdt.ui.unittest.junit.feature/pom.xml
index 4f9eed75d7..f9bb14bf9f 100644
--- a/org.eclipse.jdt.ui.unittest.junit.feature/pom.xml
+++ b/org.eclipse.jdt.ui.unittest.junit.feature/pom.xml
@@ -22,4 +22,36 @@
<artifactId>org.eclipse.jdt.ui.unittest.junit.feature</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-source-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <id>feature-source</id>
+ <goals>
+ <goal>feature-source</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <executions>
+ <execution>
+ <id>attach-p2-metadata</id>
+ <phase>package</phase>
+ <goals>
+ <goal>p2-metadata</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top