Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonah Graham2021-04-16 00:32:20 +0000
committerJonah Graham2021-04-29 18:39:00 +0000
commit919f0a008676706978e10349bf2704b009a076c4 (patch)
tree832b53b909223c857aff4d392ff2b3c6488948e4 /core/org.eclipse.cdt.core.linux.x86_64/pom.xml
parentcb56590d4c20382155b8b1fd7e4123e2508835a9 (diff)
downloadorg.eclipse.cdt-919f0a008676706978e10349bf2704b009a076c4.tar.gz
org.eclipse.cdt-919f0a008676706978e10349bf2704b009a076c4.tar.xz
org.eclipse.cdt-919f0a008676706978e10349bf2704b009a076c4.zip
Bug 572875 and Bug 572878: Sign .jnilib/.dll in production builds
Because the dll/jnilib is modified in place, the natives are qualified with their build date, rather than their git date as the checked-in libraries are not signed. Change-Id: I3078f5040f7ef9590bb4ab5d031dcb29b3c3bdde
Diffstat (limited to 'core/org.eclipse.cdt.core.linux.x86_64/pom.xml')
-rw-r--r--core/org.eclipse.cdt.core.linux.x86_64/pom.xml13
1 files changed, 12 insertions, 1 deletions
diff --git a/core/org.eclipse.cdt.core.linux.x86_64/pom.xml b/core/org.eclipse.cdt.core.linux.x86_64/pom.xml
index 8d54d28652a..37d7285985e 100644
--- a/core/org.eclipse.cdt.core.linux.x86_64/pom.xml
+++ b/core/org.eclipse.cdt.core.linux.x86_64/pom.xml
@@ -21,7 +21,7 @@
<relativePath>../../pom.xml</relativePath>
</parent>
- <version>6.0.100-SNAPSHOT</version>
+ <version>6.0.200-SNAPSHOT</version>
<artifactId>org.eclipse.cdt.core.linux.x86_64</artifactId>
<packaging>eclipse-plugin</packaging>
@@ -58,6 +58,17 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-packaging-plugin</artifactId>
+ <configuration>
+ <!-- When signing binaries, the result is not checked into repo, so the
+ jgit timestamp provider cannot be used. This has the side effect
+ that the version of this bundle needs to be incremented on each
+ CDT release. -->
+ <timestampProvider>default</timestampProvider>
+ </configuration>
+ </plugin>
</plugins>
</build>
</project>

Back to the top