Skip to content

Commit

Permalink
GH-95 Add checksum validation warning to the FAQ
Browse files Browse the repository at this point in the history
  • Loading branch information
dzikoysk committed Jun 4, 2020
1 parent 4b87a52 commit c63fd80
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,8 @@ To use generated token add a new server in your `~/m2/settings.xml`

#### FAQ
**Q:** Maven randomly interrupts deploy and throws socket write error <br>
**A:** It is a common issue on Java 12 due to the bug related to SSL. To resolve this problem, just change Java version used by Maven build, e.g. 8 or 14.
**A:** It is a common issue on Java 12 due to the bug related to SSL. To resolve this problem, just change Java version used by Maven build, e.g. 8 or 14.

**Q:** Checksum validation failed on the maven-metadata.xml <br>
**A:** Checksum validation always fails, because Reposilite does not trust the metadata files offered by client - they're generated by server, based on the repository content to ensure consistency.
It's fine and it does not affect your builds.
2 changes: 2 additions & 0 deletions reposilite-backend/src/main/resources/reposilite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
hostname: ""
# Port
port: 80
# Debug
debugEnabled: false

# List of supported Maven repositories.
# First directory on the list is the main repository.
Expand Down
6 changes: 3 additions & 3 deletions reposilite-backend/src/test/workspace/reposilite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ rewritePathsEnabled: true
fullAuthEnabled: false

# Title displayed by frontend
title: "#onlypanda-custom"
title: "Your company"
# Description displayed by frontend
description: "Public Maven repository hosted through the Reposilite - custom"
description: "Definitely not Reposilite"
# Accent color used by frontend
accentColor: "#008000"
accentColor: "#1de9b6"

0 comments on commit c63fd80

Please sign in to comment.