We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e8b72a commit ca799bcCopy full SHA for ca799bc
2 files changed
examples/cached-key-example/src/main/java/com/ironcorelabs/cachedkey/CachedKeyExample.java
@@ -15,7 +15,7 @@
15
*/
16
public class CachedKeyExample {
17
18
- private static final String TSP_ADDR = "http://localhost:7777";
+ private static final String TSP_ADDR = "http://localhost:32804";
19
20
public static void main(String[] args) throws Exception {
21
flake.nix
@@ -13,6 +13,10 @@
13
maven
14
openjdk17
];
+ # Nix sets SOURCE_DATE_EPOCH to 1980-01-01T00:00:00Z (315532800) for
+ # reproducible builds, but maven-javadoc-plugin requires at least
+ # 1980-01-01T00:00:02Z. Bump by 2 seconds to satisfy the validation.
+ SOURCE_DATE_EPOCH = 315532802;
};
}
22
);
0 commit comments