Hi Aakash,
Please refer the below two similar conversations,
https://community.mendix.com/link/space/community/questions/134236
https://community.mendix.com/link/space/studio-pro/questions/131085
I hope it Helps!
Thanks & Regards,
Manikandan K
Dear Aakash ,
Go to the build.gradle file and disable CycloneDX .once you disable this file then clean the deployment directory and rerun the application.
Regards,
Mohamed Rasik.N
hi,
This error:
Plugin [id: 'org.cyclonedx.bom', version: '1.8.1'] was not found
is not a Mendix model error — it is a Gradle build/plugin resolution issue that happens when Studio Pro cannot download the required plugin from the Gradle repositories during install/build.
Gradle tries to fetch the CycloneDX BOM plugin (used by Mendix build process) from the online repository. If Studio Pro cannot reach those repositories, the build fails with exactly this error.
Common causes seen in official community threads:
plugins.gradle.org → plugin download fails This matches multiple Mendix community reports of the same error in Mendix 10 when installing modules.
If you are behind a corporate proxy (e.g., ZScaler), Studio Pro’s JDK must trust it:
Edit → Preferences → Deployment → JDK Directory)lib/security/cacertschangeit)Create or edit:
C:\Users\<username>\.gradle\gradle.properties
Add:
systemProp.http.proxyHost=YOUR_PROXY systemProp.http.proxyPort=YOUR_PROXY_PORT systemProp.https.proxyHost=YOUR_PROXY systemProp.https.proxyPort=YOUR_PROXY_PORT
This lets Gradle route through the proxy.
Go to:
Edit → Preferences → Deployment → Use custom repositories
https://plugins.gradle.org/m2 https://repo.maven.apache.org/maven2
This helps if the default repository is blocked.
C:\Users\<username>\.gradleMendix’s build process uses Gradle under the hood and retrieves plugins like org.cyclonedx.bom from the Gradle Plugin Portal. If Studio Pro’s JDK cannot reach those repositories or does not trust the cert chain, Gradle reports “plugin not found” even though it exists online.