Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Leicht Vogt2013-01-22 11:48:45 +0000
committerStephan Leicht Vogt2013-01-24 14:28:08 +0000
commit80ec7ef17698e08c9bfa723bf139ebf5dfc86b99 (patch)
treef4f8eb4d19e1d678622bdfcf384bcb830b1eeeee
parent5f07b594e2ad032715cdaac129746d618ff8dea5 (diff)
downloadorg.eclipse.scout.rt-80ec7ef17698e08c9bfa723bf139ebf5dfc86b99.tar.gz
org.eclipse.scout.rt-80ec7ef17698e08c9bfa723bf139ebf5dfc86b99.tar.xz
org.eclipse.scout.rt-80ec7ef17698e08c9bfa723bf139ebf5dfc86b99.zip
disables validation of target files
validation of target files is broken for eclipse 3.5 and 3.6
-rw-r--r--org.eclipse.scout.target/pom.xml50
1 files changed, 25 insertions, 25 deletions
diff --git a/org.eclipse.scout.target/pom.xml b/org.eclipse.scout.target/pom.xml
index 29d392903e..aa2148a944 100644
--- a/org.eclipse.scout.target/pom.xml
+++ b/org.eclipse.scout.target/pom.xml
@@ -81,31 +81,31 @@
</executions>
</plugin>
- <plugin>
- <groupId>org.eclipse.tycho.extras</groupId>
- <artifactId>target-platform-validation-plugin</artifactId>
- <version>${tycho-extras.version}</version>
- <executions>
- <execution>
- <phase>verify</phase>
- <goals>
- <goal>validate-target-platform</goal>
- </goals>
- <configuration>
- <targetFiles>
- <param>eclipse-3.4.target</param>
- <param>eclipse-3.5.target</param>
- <param>eclipse-3.6.target</param>
- <param>eclipse-3.7.target</param>
- <param>eclipse-3.8.target</param>
- <param>eclipse-3.9.target</param>
- <param>eclipse-staging.target</param>
- </targetFiles>
- <failOnError>true</failOnError>
- </configuration>
- </execution>
- </executions>
- </plugin>
+<!-- <plugin> -->
+<!-- <groupId>org.eclipse.tycho.extras</groupId> -->
+<!-- <artifactId>target-platform-validation-plugin</artifactId> -->
+<!-- <version>${tycho-extras.version}</version> -->
+<!-- <executions> -->
+<!-- <execution> -->
+<!-- <phase>verify</phase> -->
+<!-- <goals> -->
+<!-- <goal>validate-target-platform</goal> -->
+<!-- </goals> -->
+<!-- <configuration> -->
+<!-- <targetFiles> -->
+<!-- <param>eclipse-3.4.target</param> -->
+<!-- <param>eclipse-3.5.target</param> -->
+<!-- <param>eclipse-3.6.target</param> -->
+<!-- <param>eclipse-3.7.target</param> -->
+<!-- <param>eclipse-3.8.target</param> -->
+<!-- <param>eclipse-3.9.target</param> -->
+<!-- <param>eclipse-staging.target</param> -->
+<!-- </targetFiles> -->
+<!-- <failOnError>true</failOnError> -->
+<!-- </configuration> -->
+<!-- </execution> -->
+<!-- </executions> -->
+<!-- </plugin> -->
</plugins>
</build>
</project>

Back to the top