-
Notifications
You must be signed in to change notification settings - Fork 130
Create THIRD-PARTY-NOTICES.txt #1125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| THIRD-PARTY-NOTICES | ||
|
|
||
| This project includes third-party packages that are distributed under various open-source licenses. Below is a list of packages and their associated licenses. | ||
|
|
||
| ================================================================================ | ||
| Package: Apache Maven Dependency Plugin | ||
| Version: 3.5.0 | ||
| License: Apache License 2.0 | ||
| Homepage: https://maven.apache.org/plugins/maven-dependency-plugin/ | ||
| ================================================================================ | ||
|
|
||
| ================================================================================ | ||
| Package: mosip/kattu – GitHub Actions Workflow (chart-lint-publish.yml) | ||
| Version: master | ||
| License: MIT License (Inferred from project’s official repository) | ||
| Homepage: https://github.com/mosip/kattu | ||
| ================================================================================ | ||
|
|
||
| ================================================================================ | ||
| Package: mosip/kattu – GitHub Actions Workflow (docker-build.yml) | ||
| Version: master | ||
| License: MIT License (Inferred) | ||
| Homepage: https://github.com/mosip/kattu | ||
| ================================================================================ | ||
|
|
||
| ================================================================================ | ||
| Package: mosip/kattu – GitHub Actions Workflow (tag.yml) | ||
| Version: master | ||
| License: MIT License (Inferred) | ||
| Homepage: https://github.com/mosip/kattu | ||
| ================================================================================ | ||
|
|
||
| ================================================================================ | ||
| Package: artifactory-ref-impl (Main Project) | ||
| Version: release-1.3.x | ||
| License: MPL-2.0 | ||
| Homepage: https://github.com/Rakshithasai123/artifactory-ref-impl | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: # First, let's check if THIRD-PARTY-NOTICES.txt exists and read its content
if [ -f "THIRD-PARTY-NOTICES.txt" ]; then
echo "=== THIRD-PARTY-NOTICES.txt content ==="
cat -n THIRD-PARTY-NOTICES.txt
else
echo "THIRD-PARTY-NOTICES.txt not found at root"
find . -name "THIRD-PARTY-NOTICES.txt" -type f
fiRepository: mosip/artifactory-ref-impl Length of output: 2425 🏁 Script executed: # Check for repository metadata and configuration files
echo "=== Repository context ==="
if [ -f ".git/config" ]; then
echo "Git remote origin:"
git config --get remote.origin.url
fi
# Check for any README or documentation about the repository
if [ -f "README.md" ]; then
echo -e "\n=== README.md (first 50 lines) ==="
head -50 README.md
fiRepository: mosip/artifactory-ref-impl Length of output: 950 🏁 Script executed: # Check git history to understand the source of this file
echo "=== Git log for THIRD-PARTY-NOTICES.txt ==="
git log --oneline --follow THIRD-PARTY-NOTICES.txt 2>/dev/null | head -10Repository: mosip/artifactory-ref-impl Length of output: 152 Update the homepage URL to reference the official MOSIP organization repository. Line 37 currently points to 🤖 Prompt for AI Agents |
||
| ================================================================================ | ||
|
|
||
| Full license texts and additional details for each of the above packages are available in the license/ directory of this repository. Please refer to those files or the original source of each package for complete legal terms and conditions. | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Verify license directory and contents
if [ -d "license/" ]; then
echo "✓ license/ directory exists"
echo "Contents:"
find license/ -type f \( -name "*.txt" -o -name "LICENSE*" -o -name "*.md" \) | sort
echo ""
echo "Total license files:"
find license/ -type f | wc -l
else
echo "✗ license/ directory not found in repository root"
echo ""
echo "Searching for similar directories:"
find . -maxdepth 3 -type d -iname "*license*" 2>/dev/null | sort
fiRepository: mosip/artifactory-ref-impl Length of output: 155 Remove or correct the reference to the non-existent The 🤖 Prompt for AI Agents |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: mosip/artifactory-ref-impl
Length of output: 2105
🌐 Web query:
mosip/kattu repository LICENSE file GitHub💡 Result:
I couldn't find a repository named mosip/kattu on GitHub. The mosip GitHub organization lists its repositories (and notes most core modules use the Mozilla Public License 2.0). See the MOSIP org page. [1]
If you intended a different repo name or a fork/individual account, tell me the exact repo URL or owner and I can look it up. [1]: https://github.com/mosip
🌐 Web query:
kattu GitHub repository💡 Result:
The kattu repository is on GitHub at techgaun/kattu — a small Node.js CLI that "runs commands quietly unless the command fails." [1] It’s also published on npm/Skypack. [2]
Sources:
[1] GitHub — techgaun/kattu.
[2] Skypack (npm package page for kattu).
🏁 Script executed:
Repository: mosip/artifactory-ref-impl
Length of output: 6128
🏁 Script executed:
Repository: mosip/artifactory-ref-impl
Length of output: 1202
Correct the license declarations for mosip/kattu workflows to CC0-1.0.
The mosip/kattu repository uses CC0-1.0 (Creative Commons Zero v1.0 Universal), not MIT License. Update all three workflow entries (chart-lint-publish.yml, docker-build.yml, and tag.yml) in THIRD-PARTY-NOTICES.txt to reflect the correct license.
Also applies to: lines 22, 29
🤖 Prompt for AI Agents