Skip to content
Open
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
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<dependency>
<groupId>com.fiscalapi</groupId>
<artifactId>fiscalapi</artifactId>
<version>4.0.272</version>
<version>4.0.372</version>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check if fiscalapi 4.0.372 exists on Maven Central
curl -s "https://search.maven.org/solrsearch/select?q=g:com.fiscalapi+AND+a:fiscalapi&rows=5&wt=json" | jq '.response.docs[] | {id, latestVersion}'

Repository: FiscalAPI/fiscalapi-samples-spring

Length of output: 60


🏁 Script executed:

cat -n pom.xml | head -60

Repository: FiscalAPI/fiscalapi-samples-spring

Length of output: 2356


🏁 Script executed:

# Check if there are repository declarations in pom.xml
grep -n "repository" pom.xml
# Also check for settings.xml or other configuration
ls -la | grep -E "settings|pom"
# Search for any README or documentation about dependencies
find . -name "README*" -o -name "*.md" | head -5

Repository: FiscalAPI/fiscalapi-samples-spring

Length of output: 212


🏁 Script executed:

cat README.md

Repository: FiscalAPI/fiscalapi-samples-spring

Length of output: 9030


🌐 Web query:

FiscalAPI fiscalapi java maven 4.0.372 version release

💡 Result:

No evidence found of a FiscalAPI Java Maven release version 4.0.372. The FiscalAPI Java SDK (groupId: com.fiscalapi, artifactId: fiscalapi) exists on Maven Central repositories, with documented versions up to 4.0.272 as of recent listings. The GitHub repository github.com/FiscalAPI/fiscalapi-java shows last activity around Aug 2025 but no published releases or changelog mentioning 4.0.372. Similar versioning patterns appear in Python (up to 4.0.360) and .NET SDKs, suggesting 4.0.372 may not be released or is unreleased/private. Official site fiscalapi.com provides the API service for Mexican CFDI electronic invoicing, with SDKs in multiple languages including Java under MPL-2.0 license. Maven dependency example: <dependency><groupId>com.fiscalapi</groupId><artifactId>fiscalapi</artifactId><version>4.0.272</version></dependency>. Check https://repo1.maven.org/maven2/com/fiscalapi/fiscalapi/ for available versions.

Citations:


Update fiscalapi version to a valid, published release.

The specified version 4.0.372 does not exist in Maven Central or any public Maven repository. The latest published version is 4.0.272. Update the dependency to use an existing, stable version.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@pom.xml` at line 47, The pom.xml currently pins the fiscalapi dependency to a
non-existent version "4.0.372"; update the <version> element for the fiscalapi
dependency to a valid published release (e.g., "4.0.272") so Maven can resolve
the artifact, then run mvn dependency:resolve or a build to verify the change;
ensure the changed <version> element is the one associated with the fiscalapi
dependency.

</dependency>

<dependency>
Expand Down
Loading