Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-02-17 10:49:27 +0000
committerUwe Stieber2012-02-17 10:49:27 +0000
commit55acbe5ebdf9486067ef00c6df96254d6deeeeb9 (patch)
tree9c8a26bcd4d65e60e5fa36d21fd6b19a890dbd90 /pom.xml
parentb70fcf419f36557886339e67f97e35bf56a82376 (diff)
downloadorg.eclipse.tcf-55acbe5ebdf9486067ef00c6df96254d6deeeeb9.tar.gz
org.eclipse.tcf-55acbe5ebdf9486067ef00c6df96254d6deeeeb9.tar.xz
org.eclipse.tcf-55acbe5ebdf9486067ef00c6df96254d6deeeeb9.zip
Maven: Fix build issues with Tycho 0.14.0
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml12
1 files changed, 11 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 27bddf7d5..91edccda5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -226,11 +226,13 @@
<encoding>UTF-8</encoding>
</configuration>
</plugin>
- <!-- enable source bundle generation -->
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-source-plugin</artifactId>
<version>${tycho-version}</version>
+ <configuration>
+ <encoding>UTF-8</encoding>
+ </configuration>
<executions>
<execution>
<id>plugin-source</id>
@@ -241,6 +243,14 @@
</executions>
</plugin>
<plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-packaging-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <configuration>
+ <strictBinIncludes>false</strictBinIncludes>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.1</version>

Back to the top