aboutsummaryrefslogtreecommitdiffstats
path: root/eclipse
diff options
context:
space:
mode:
authorSiva Velusamy <vsiva@google.com>2014-10-29 14:12:47 -0700
committerSiva Velusamy <vsiva@google.com>2014-10-29 14:16:03 -0700
commit765bc3fe4f1c55a83c6a4676cc2ffa4ee1856533 (patch)
tree8208d4716b62b4bbf5013e871d935976b59d62f8 /eclipse
parentffe2a60cb0ac24d073fb46d50a9cedfd82da4a91 (diff)
downloadsdk-765bc3fe4f1c55a83c6a4676cc2ffa4ee1856533.zip
sdk-765bc3fe4f1c55a83c6a4676cc2ffa4ee1856533.tar.gz
sdk-765bc3fe4f1c55a83c6a4676cc2ffa4ee1856533.tar.bz2
Do not include META-INF/maven folder in generated artifact
Change-Id: Ib085f8082e6b3859c0cc4bcb881cceb1485c81bc
Diffstat (limited to 'eclipse')
-rw-r--r--eclipse/pom.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/eclipse/pom.xml b/eclipse/pom.xml
index 4001d44..025fc98 100644
--- a/eclipse/pom.xml
+++ b/eclipse/pom.xml
@@ -192,5 +192,25 @@
</configuration>
</plugin>
</plugins>
+ <!--
+ Don't include META-INF/maven in the jar files, this causes an unnecessary increase in the
+ path length as that folder contained the files with the longest paths (one path was 190 chars).
+ Windows has a limit of ~260 chars, but removing all the maven info lowers our max path length
+ from 190 to about 150.
+ -->
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-packaging-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <configuration>
+ <archive>
+ <addMavenDescriptor>false</addMavenDescriptor>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
</build>
</project>