Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions pipeline.did/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,10 @@
<build>
<plugins>
<!-- Compile the OWID submodule source directly into this module,
excluding the HTTP-only Endpoints class which is not needed
for offline parse and verify. -->
excluding the HTTP-only classes (Endpoints and
PublicKeyFetch), which are not needed for offline parse
and verify. The 51Did client fetches the cloud's published
key list itself, through its own transport. -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
Expand All @@ -96,6 +98,7 @@
<configuration>
<excludes>
<exclude>**/com/swancommunity/owid/Endpoints.java</exclude>
<exclude>**/com/swancommunity/owid/PublicKeyFetch.java</exclude>
</excludes>
</configuration>
</plugin>
Expand Down
Loading