Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2013-08-26 20:38:18 +0000
committerThomas Watson2013-08-26 20:38:18 +0000
commit85912aa504b7c61ddd1015de400eac9215809818 (patch)
tree2b70ebb47883cf29aeb5306e1c5057d2339cf11b
parente7a6b171c3da810a20f0656afd47753bc11fc563 (diff)
downloadrt.equinox.bundles-85912aa504b7c61ddd1015de400eac9215809818.tar.gz
rt.equinox.bundles-85912aa504b7c61ddd1015de400eac9215809818.tar.xz
rt.equinox.bundles-85912aa504b7c61ddd1015de400eac9215809818.zip
Bug 407833 - equinox can/should express it's own need for org.aspectj.weaverI20130827-0800
-rw-r--r--bundles/org.eclipse.equinox.weaving.aspectj/pom.xml25
1 files changed, 24 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.weaving.aspectj/pom.xml b/bundles/org.eclipse.equinox.weaving.aspectj/pom.xml
index 6daa91198..8b2327cf9 100644
--- a/bundles/org.eclipse.equinox.weaving.aspectj/pom.xml
+++ b/bundles/org.eclipse.equinox.weaving.aspectj/pom.xml
@@ -21,4 +21,27 @@
<artifactId>org.eclipse.equinox.weaving.aspectj</artifactId>
<version>1.0.400-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
-</project>
+
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <configuration>
+ <dependency-resolution>
+ <extraRequirements>
+ <!-- this guarantees proper reactor build order -->
+ <requirement>
+ <type>eclipse-plugin</type>
+ <id>org.aspectj.weaver</id>
+ <versionRange>0.0.0</versionRange>
+ </requirement>
+ </extraRequirements>
+ </dependency-resolution>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project> \ No newline at end of file

Back to the top