3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-12 02:05:53 +00:00

Remove verifier from examples/pom.xml, it requires us to wait for reproducible build support to land.

This commit is contained in:
Mike Hearn 2013-08-11 16:47:26 +02:00
parent 08afe9044d
commit b20f0c306c

View File

@ -30,57 +30,6 @@
<name>bitcoinj Examples</name>
<description>A collection of examples using the bitcoinj library</description>
<!-- This section shows you how to lock down the dependency chain so if upstream developers get hacked, your app
cannot be backdoored. Here we enforce the hash of the bitcoinj library. That in turn verifies the hashes of all
its dependencies. -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<id>enforce</id>
<phase>verify</phase>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<digestRule implementation="uk.co.froot.maven.enforcer.DigestRule">
<!-- Create a snapshot to build the list of URNs below -->
<buildSnapshot>true</buildSnapshot>
<!-- List of required hashes -->
<!-- Format is URN of groupId:artifactId:version:type:classifier:scope:hash -->
<!-- classifier is "null" if not present -->
<urns>
<!-- Verify bitcoinj is not tampered with -->
<urn>com.google:bitcoinj:0.10:jar:null:runtime:cd0bb81f4d3dd260e2c8df2e2e60b98bb7b5c6d6</urn>
<!-- A check for the rules themselves -->
<urn>uk.co.froot.maven.enforcer:digest-enforcer-rules:0.0.1:jar:null:runtime:16a9e04f3fe4bb143c42782d07d5faf65b32106f</urn>
</urns>
</digestRule>
</rules>
</configuration>
</execution>
</executions>
<!-- Ensure we download the enforcer rules -->
<dependencies>
<dependency>
<groupId>uk.co.froot.maven.enforcer</groupId>
<artifactId>digest-enforcer-rules</artifactId>
<version>0.0.1</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google</groupId>