Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJayaprakash Arthanareeswaran2013-08-30 04:52:08 +0000
committerJayaprakash Arthanareeswaran2013-10-08 17:39:21 +0000
commit1237b5718be2bd8bb3477dbbd10d66e776b26b7b (patch)
treec580f8309cb89cff382da34ea2a1d8d433d065f3
parent759e466c4b43d5fe0e8c938530f618dd5488461b (diff)
downloadeclipse.jdt.core-1237b5718be2bd8bb3477dbbd10d66e776b26b7b.tar.gz
eclipse.jdt.core-1237b5718be2bd8bb3477dbbd10d66e776b26b7b.tar.xz
eclipse.jdt.core-1237b5718be2bd8bb3477dbbd10d66e776b26b7b.zip
FIx for bug 416106 - I build failure -
testPackageFragmentRootNonJavaResources3
-rw-r--r--org.eclipse.jdt.core.tests.compiler/pom.xml5
-rw-r--r--org.eclipse.jdt.core.tests.model/pom.xml4
-rw-r--r--org.eclipse.jdt.core/pom.xml4
3 files changed, 13 insertions, 0 deletions
diff --git a/org.eclipse.jdt.core.tests.compiler/pom.xml b/org.eclipse.jdt.core.tests.compiler/pom.xml
index 080a35099b..d36391bfcb 100644
--- a/org.eclipse.jdt.core.tests.compiler/pom.xml
+++ b/org.eclipse.jdt.core.tests.compiler/pom.xml
@@ -21,4 +21,9 @@
<artifactId>org.eclipse.jdt.core.tests.compiler</artifactId>
<version>3.9.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
+
+ <properties>
+ <defaultSigning-excludeInnerJars>true</defaultSigning-excludeInnerJars>
+ </properties>
+
</project>
diff --git a/org.eclipse.jdt.core.tests.model/pom.xml b/org.eclipse.jdt.core.tests.model/pom.xml
index 5ad647d6d0..611a96389b 100644
--- a/org.eclipse.jdt.core.tests.model/pom.xml
+++ b/org.eclipse.jdt.core.tests.model/pom.xml
@@ -22,6 +22,10 @@
<version>3.9.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
+ <properties>
+ <defaultSigning-excludeInnerJars>true</defaultSigning-excludeInnerJars>
+ </properties>
+
<build>
<plugins>
<plugin>
diff --git a/org.eclipse.jdt.core/pom.xml b/org.eclipse.jdt.core/pom.xml
index 86146f555f..c74c78954c 100644
--- a/org.eclipse.jdt.core/pom.xml
+++ b/org.eclipse.jdt.core/pom.xml
@@ -21,6 +21,10 @@
<version>3.9.1-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+ <properties>
+ <defaultSigning-excludeInnerJars>true</defaultSigning-excludeInnerJars>
+ </properties>
+
<build>
<plugins>
<plugin>

Back to the top